Skip to content

Commit 06e30da

Browse files
committed
Add Python 3.13 support.
1 parent 249e79f commit 06e30da

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,13 @@ jobs:
4141
- python-version: "3.12"
4242
env:
4343
TOXENV: py
44-
- python-version: "3.12"
44+
- python-version: "3.13"
45+
env:
46+
TOXENV: py
47+
- python-version: "3.13"
4548
env:
4649
TOXENV: pre-commit
47-
- python-version: "3.12"
50+
- python-version: "3.13"
4851
env:
4952
TOXENV: docs
5053
steps:

.readthedocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ build:
99
tools:
1010
# For available versions, see:
1111
# https://docs.readthedocs.io/en/stable/config-file/v2.html#build-tools-python
12-
python: "3.12" # Keep in sync with .github/workflows/main.yml
12+
python: "3.13" # Keep in sync with .github/workflows/main.yml
1313

1414
python:
1515
install:
1616
- requirements: docs/requirements.txt
17-
- path: .
17+
- path: .

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
'Programming Language :: Python :: 3.10',
3333
'Programming Language :: Python :: 3.11',
3434
'Programming Language :: Python :: 3.12',
35+
'Programming Language :: Python :: 3.13',
3536
'Framework :: Scrapy',
3637
'Intended Audience :: Developers',
3738
'Topic :: Internet :: WWW/HTTP',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# tox.ini
22
[tox]
3-
envlist = pre-commit,mypy,min,py27,py34,py35,py36,py37,py38,py39,py310,py311,py312,docs
3+
envlist = pre-commit,mypy,min,py27,py34,py35,py36,py37,py38,py39,py310,py311,py312,py313,docs
44

55
[testenv]
66
deps =

0 commit comments

Comments
 (0)