Skip to content

Commit

Permalink
TEST: add support for python 3.13.
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinecollet5 committed Nov 13, 2024
1 parent f7b94ee commit 660961f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.13

- name: Install dependencies
run: pip install -r requirements_dev.txt
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
python-version: 3.13

- name: Install dependencies
run: pip install -r requirements_dev.txt
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
strategy:
max-parallel: 6
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ sphinx:
build:
os: ubuntu-22.04
tools:
python: "3.12"
python: "3.13"


# Optionally set the version of Python and requirements required to build your docs
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = clean, py37, py38, py39, py310, py311, py312
envlist = clean, py37, py38, py39, py310, py311, py312, py313
skipsdist = true

[gh-actions]
Expand All @@ -10,6 +10,7 @@ python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313

[testenv:clean]
deps = coverage
Expand Down Expand Up @@ -39,4 +40,4 @@ commands =
coverage html -i
coverage xml -i
depends =
{py37,py38,py39,py310,py311,py312}: clean
{py37,py38,py39,py310,py311,py312,py313}: clean

0 comments on commit 660961f

Please sign in to comment.