Skip to content

Commit

Permalink
feat: add support for Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed Jan 6, 2025
1 parent 10db9cc commit d7ad2d5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
- '3.10'
- '3.11'
- '3.12'
- '3.13'
env:
PYTHON_VERSION: ${{ matrix.python-version }}
PYTHONUNBUFFERED: 1
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.9",
"Topic :: Internet",
]
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
# and then run "tox" from this directory.

[tox]
envlist = py39,py310,py311,py312
envlist = py39,py310,py311,py312,py313

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

0 comments on commit d7ad2d5

Please sign in to comment.