Skip to content

Commit

Permalink
Add Python 3.13, drop Python 3.8 (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
oittaa authored Nov 18, 2024
1 parent 708dcca commit 350eccf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13-dev']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"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",
],
setup_requires=[
"wheel",
Expand All @@ -59,5 +59,5 @@
"": ["py.typed"],
},
packages=find_packages(where="src"),
python_requires=">=3.8",
python_requires=">=3.9",
)

0 comments on commit 350eccf

Please sign in to comment.