From 1aceeba7855b7ebecc6dcb3319fd17d8c23260cc Mon Sep 17 00:00:00 2001 From: Andrey Rakhmatullin Date: Mon, 23 Sep 2024 12:03:38 +0500 Subject: [PATCH] Drop Python 3.8 support. --- .github/workflows/test.yml | 3 +-- docs/setup.rst | 2 +- setup.py | 1 - tox.ini | 2 +- 4 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 77198dc..fbe7a90 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,9 +17,8 @@ jobs: fail-fast: false matrix: include: - - python-version: '3.8' + - python-version: '3.9' toxenv: min - - python-version: '3.8' - python-version: '3.9' - python-version: '3.10' - python-version: '3.11' diff --git a/docs/setup.rst b/docs/setup.rst index 2f533b1..6c35da4 100644 --- a/docs/setup.rst +++ b/docs/setup.rst @@ -16,7 +16,7 @@ configured on an existing Scrapy_ project. Requirements ============ -- Python 3.8+ +- Python 3.9+ - Scrapy 2.11+ diff --git a/setup.py b/setup.py index 61845a1..aabf0d0 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,6 @@ "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", diff --git a/tox.ini b/tox.ini index a88f936..4212e3e 100644 --- a/tox.ini +++ b/tox.ini @@ -17,7 +17,7 @@ commands = {posargs:zyte_spider_templates tests} [testenv:min] -basepython = python3.8 +basepython = python3.9 deps = {[testenv]deps} pydantic==2