diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 865e3c6..a678d87 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/setup.py b/setup.py index 458fc9a..67aef87 100644 --- a/setup.py +++ b/setup.py @@ -32,14 +32,13 @@ author="Lukas Heinrich", author_email="lukas.heinrich@cern.ch", 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",