Skip to content

Commit

Permalink
Remove python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
thieu1995 committed Mar 22, 2024
1 parent 2d0d104 commit 60b392b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]

steps:
- uses: actions/checkout@v1
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ def readme():
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Benchmark",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
Expand All @@ -69,5 +68,5 @@ def readme():
extras_require={
"dev": ["pytest>=7.0", "twine>=4.0.1"],
},
python_requires='>=3.7',
python_requires='>=3.7, <3.12',
)

0 comments on commit 60b392b

Please sign in to comment.