Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
python-version: ["3.11", "3.12", "3.13", "3.14"]

steps:
- uses: actions/checkout@v7
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ The rules for this file:
<!-- GitHub usernames of contributors to this release -->
- IAlibay
- lilyminium
- orbeckst

### Reviewers
<!-- GitHub usernames of reviewers of this release -->
Expand All @@ -37,6 +38,8 @@ The rules for this file:
- always add bullet for unordered list (#82)

### Changed
- support Python 3.14
- removed Python 3.9 and 3.10
- Modernized packaging to be PEP518 compliant.

### Removed
Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,13 @@ classifiers = [
"Topic :: Software Development :: Documentation",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.9"
requires-python = ">=3.11"
dependencies = [
"sphinx_rtd_theme>=1.3",
"sphinx>=6.2.1",
Expand Down