Skip to content

Commit 1098370

Browse files
authored
Update CI to use Python 3.13 and Ubuntu 24.04 (#1153)
1 parent 740ee3d commit 1098370

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ jobs:
3434
- "3.10"
3535
- "3.11"
3636
- "3.12"
37+
- "3.13"
3738
- "pypy3.10"
38-
- "3.13-dev"
3939
env:
4040
BABEL_CLDR_NO_DOWNLOAD_PROGRESS: "1"
4141
BABEL_CLDR_QUIET: "1"
@@ -68,13 +68,13 @@ jobs:
6868
token: ${{ secrets.CODECOV_TOKEN }}
6969
verbose: true
7070
build:
71-
runs-on: ubuntu-22.04
71+
runs-on: ubuntu-24.04
7272
needs: lint
7373
steps:
7474
- uses: actions/checkout@v4
7575
- uses: actions/setup-python@v5
7676
with:
77-
python-version: "3.12"
77+
python-version: "3.13"
7878
cache: "pip"
7979
cache-dependency-path: "**/setup.py"
8080
- run: pip install build -e .

tox.ini

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[tox]
22
isolated_build = true
33
envlist =
4-
py{38,39,310,311,312}
4+
py{38,39,310,311,312,313}
55
pypy3
66
py{38}-pytz
7-
py{311,312}-setuptools
8-
py312-jinja
7+
py{311,312,313}-setuptools
8+
py{312,313}-jinja
99

1010
[testenv]
1111
extras =
@@ -37,3 +37,4 @@ python =
3737
3.10: py310
3838
3.11: py311
3939
3.12: py312
40+
3.13: py313

0 commit comments

Comments
 (0)