Skip to content

Commit

Permalink
explicitly drop support for Python < 3.8 like the rest of the ecosystem
Browse files Browse the repository at this point in the history
  • Loading branch information
anthrotype committed Sep 6, 2023
1 parent 6a1878b commit 876b0fe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
CIBW_ARCHS_MACOS: "x86_64 universal2"
# Skip
#
# * Python 3.6 on all platforms,
# * Python 3.6 and 3.7 on all platforms,
# * PyPy on Windows.
CIBW_SKIP: cp36-* pp*-win_amd64
CIBW_SKIP: cp36-* cp37-* pp*-win_amd64
steps:
- uses: actions/checkout@v2
with:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ def run(self):
include_package_data=True,
ext_modules=extensions,
setup_requires=["setuptools_scm"] + wheel,
python_requires=">=3.8",
cmdclass={"build_ext": cython_build_ext, "sdist": cython_sdist},
zip_safe=False,
)
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
project_name = openstep_plist
envlist = py{27,37}-cov,coverage
envlist = py{38,39,310,311,312}-cov,coverage
minversion = 3.4.0
isolated_build = true
skip_missing_interpreters = true
Expand Down

0 comments on commit 876b0fe

Please sign in to comment.