Skip to content

Commit

Permalink
build: Require Python 3.8+ (#95)
Browse files Browse the repository at this point in the history
* Python 3.7 is EOL on 2023-06-27 so only support Pythons with support
  from the PSF.
  • Loading branch information
matthewfeickert authored Jun 15, 2023
1 parent 068a2d1 commit 01bf00d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,13 @@
author="Lukas Heinrich",
author_email="[email protected]",
packages=find_packages(),
python_requires=">=3.7",
python_requires=">=3.8",
include_package_data=True,
install_requires=deps,
extras_require={
"celery": [
"celery>=5.0.0",
"redis",
"importlib-metadata<5.0.0; python_version < '3.8'", # FIXME: c.f. https://github.com/celery/celery/issues/7783
]
},
entry_points={
Expand All @@ -57,7 +56,6 @@
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down

0 comments on commit 01bf00d

Please sign in to comment.