Skip to content

Commit

Permalink
Add Python 3.13 to tox and CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
larrybradley committed Sep 16, 2024
1 parent 6a6f97a commit 7a00aeb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci_cron_daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:
prefix: ''

- os: ubuntu-latest
python: '3.12'
tox_env: 'py312-test-devdeps'
python: '3.13'
tox_env: 'py313-test-devdeps'
toxposargs: --remote-data=any
allow_failure: true
prefix: '(Allowed failure)'
Expand All @@ -56,6 +56,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
allow-prerelease: true
- name: Install base dependencies
run: python -m pip install --upgrade pip setuptools tox
- name: Print Python, pip, setuptools, and tox versions
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ jobs:
prefix: ''

- os: ubuntu-latest
python: '3.12'
tox_env: 'py312-test-devdeps'
python: '3.13'
tox_env: 'py313-test-devdeps'
toxposargs: --remote-data=any
allow_failure: true
prefix: '(Allowed failure)'
Expand All @@ -114,6 +114,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
allow-prerelease: true
- name: Install base dependencies
run: python -m pip install --upgrade pip setuptools tox
- name: Print Python, pip, setuptools, and tox versions
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist =
py{310,311,312}-test{,-alldeps,-devdeps,-oldestdeps,-devinfra}{,-cov}
py{310,311,312}-test-numpy{126,200,210}
py{310,311,312,313}-test{,-alldeps,-devdeps,-oldestdeps,-devinfra}{,-cov}
py{310,311,312,313}-test-numpy{126,200,210}
build_docs
linkcheck
codestyle
Expand Down

0 comments on commit 7a00aeb

Please sign in to comment.