From e8b5e988c620e98bbc3a38dab255737ce9fa0c67 Mon Sep 17 00:00:00 2001 From: Andrey Rakhmatullin Date: Thu, 6 Jul 2023 09:57:02 +0400 Subject: [PATCH] Drop Python 3.7 support (#61) --- .github/workflows/tests.yml | 3 --- setup.py | 3 +-- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index aa6e798..1a78852 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,9 +7,6 @@ jobs: strategy: matrix: include: - - python-version: 3.7 - env: - TOXENV: py - python-version: 3.8 env: TOXENV: py diff --git a/setup.py b/setup.py index 83bad19..2d3ad4a 100644 --- a/setup.py +++ b/setup.py @@ -11,14 +11,13 @@ url="https://github.com/scrapy/queuelib", packages=find_packages(), platforms=["Any"], - python_requires=">=3.7", + python_requires=">=3.8", classifiers=[ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10",