Skip to content

Commit 3bb9b9b

Browse files
committed
Python support: add 3.13, remove 3.8
1 parent 5b9754b commit 3bb9b9b

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Set up Python
2828
uses: actions/setup-python@v5
2929
with:
30-
python-version: 3.11
30+
python-version: 3.12
3131

3232
- name: Run check
3333
env: ${{ matrix.env }}

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Python
1515
uses: actions/setup-python@v5
1616
with:
17-
python-version: 3.11
17+
python-version: 3.12
1818

1919
- name: Publish to PyPI
2020
run: |

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
os: [ubuntu-latest]
13-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
13+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1414
include:
1515
- os: macos-latest
1616
python-version: "3.12"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ to integrate `asyncio`-based projects such as `Playwright`.
2222

2323
### Minimum required versions
2424

25-
* Python >= 3.8
25+
* Python >= 3.9
2626
* Scrapy >= 2.0 (!= 2.4.0)
2727
* Playwright >= 1.15
2828

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,18 @@
2222
"Development Status :: 4 - Beta",
2323
"License :: OSI Approved :: BSD License",
2424
"Programming Language :: Python",
25-
"Programming Language :: Python :: 3.8",
2625
"Programming Language :: Python :: 3.9",
2726
"Programming Language :: Python :: 3.10",
2827
"Programming Language :: Python :: 3.11",
2928
"Programming Language :: Python :: 3.12",
29+
"Programming Language :: Python :: 3.13",
3030
"Framework :: Scrapy",
3131
"Intended Audience :: Developers",
3232
"Topic :: Internet :: WWW/HTTP",
3333
"Topic :: Software Development :: Libraries :: Application Frameworks",
3434
"Topic :: Software Development :: Libraries :: Python Modules",
3535
],
36-
python_requires=">=3.8",
36+
python_requires=">=3.9",
3737
install_requires=[
3838
"scrapy>=2.0,!=2.4.0",
3939
"playwright>=1.15",

0 commit comments

Comments
 (0)