-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Python 3.7 is EOL on 2023-06-27 so only support Pythons with support from the PSF.
- Loading branch information
1 parent
068a2d1
commit 01bf00d
Showing
2 changed files
with
2 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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={ | ||
|
@@ -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", | ||
|