Skip to content

Commit 28e9f73

Browse files
committed
feat: add support for Python 3.13
1 parent 10db9cc commit 28e9f73

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@ jobs:
66
test:
77
runs-on: ubuntu-22.04
88
strategy:
9+
fail-fast: false
910
matrix:
1011
python-version:
1112
- '3.9'
1213
- '3.10'
1314
- '3.11'
1415
- '3.12'
16+
- '3.13'
1517
env:
1618
PYTHON_VERSION: ${{ matrix.python-version }}
1719
PYTHONUNBUFFERED: 1

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ classifiers = [
2828
"Programming Language :: Python :: 3.10",
2929
"Programming Language :: Python :: 3.11",
3030
"Programming Language :: Python :: 3.12",
31+
"Programming Language :: Python :: 3.13",
3132
"Programming Language :: Python :: 3.9",
3233
"Topic :: Internet",
3334
]

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py39,py310,py311,py312
7+
envlist = py39,py310,py311,py312,py313
88

99
[testenv]
1010
passenv = *
1111
deps =
12-
py{39,310,311,312}: -e .[dev,all]
12+
py{39,310,311,312,313}: -e .[dev,all]
1313
commands =
1414
pytest {posargs:-v --cov=social_core}

0 commit comments

Comments
 (0)