Skip to content

Commit

Permalink
maint: minimum python version 3.6 -> 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
giganano committed Oct 23, 2023
1 parent 0915e63 commit a7a59ed
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
os: ["ubuntu-latest", "macos-10.15"]
compiler: [gcc-10, clang]
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"

exclude:

Expand Down
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
- The name of the extension to reinstall is invalid
"""

# this version requires python >= 3.6.0
MIN_PYTHON_VERSION = "3.6.0"
# this version requires python >= 3.8.0
MIN_PYTHON_VERSION = "3.8.0"
import sys
import os
if sys.version_info[:] < tuple(
Expand Down Expand Up @@ -66,11 +66,11 @@
Programming Language :: Cython
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
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 :: Only
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering
Expand Down Expand Up @@ -325,9 +325,9 @@ def setup_package():
include_dirs = include_dirs,
setup_requires = [
"setuptools>=18.0", # automatically handles Cython extensions
"Cython>=0.29.0"
"Cython>=3.0"
],
python_requires=">=3.6,<4",
python_requires=">=3.8,<4",
zip_safe = False,
verbose = "-q" not in sys.argv and "--quiet" not in sys.argv
)
Expand Down

0 comments on commit a7a59ed

Please sign in to comment.