Skip to content

Commit

Permalink
Declare support for Python 3.13 (#2071)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Nov 27, 2024
1 parent 6edfdbf commit 3faa4f9
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 5 deletions.
25 changes: 22 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -168,7 +174,14 @@ jobs:
needs: [flake8, isort, black, doc8, checkmanifest, typing]
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.10"]
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "pypy-3.10"

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -209,7 +222,13 @@ jobs:
needs: [flake8, isort, black, doc8, checkmanifest, typing]
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
arch: ["x86", "x64"]

steps:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[tox]
envlist=py{38,39,310,311,312,py3},alpine,flake8,checkmanifest,isort,mypy,doc8
envlist=py{38,39,310,311,312,313,py3},alpine,flake8,checkmanifest,isort,mypy,doc8
skip_missing_interpreters = true

[testenv]
deps =
coverage>=5.2
freezegun<0.4
freezegun
pytest>=6.0.1
ukpostcodeparser>=1.1.1
validators>=0.13.0
Expand Down

0 comments on commit 3faa4f9

Please sign in to comment.