Skip to content

Commit 7571e73

Browse files
authored
Merge pull request #567 from bsipocz/MAINT_adding_py313
CI: adding python 3.13 (and np 2.0) to tox and CI
2 parents 7b16c29 + 696ee3a commit 7571e73

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

.github/workflows/ci_tests.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ jobs:
6868
prefix: ''
6969

7070
- os: ubuntu-latest
71-
python: '3.12'
72-
tox_env: 'py312-test'
71+
python: '3.13'
72+
tox_env: 'py313-test'
7373
allow_failure: false
7474
prefix: ''
7575

@@ -98,8 +98,8 @@ jobs:
9898
prefix: ''
9999

100100
- os: ubuntu-latest
101-
python: '3.12'
102-
tox_env: 'py312-test-devdeps'
101+
python: '3.13'
102+
tox_env: 'py313-test-devdeps'
103103
toxposargs: --remote-data=any
104104
allow_failure: true
105105
prefix: '(Allowed failure)'
@@ -113,6 +113,7 @@ jobs:
113113
uses: actions/setup-python@v5
114114
with:
115115
python-version: ${{ matrix.python }}
116+
allow-prereleases: true
116117
- name: Install base dependencies
117118
run: python -m pip install --upgrade pip setuptools tox
118119
- name: Print Python, pip, setuptools, and tox versions

tox.ini

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
3-
py{310,311,312}-test{,-alldeps,-devdeps,-oldestdeps,-devinfra}{,-cov}
4-
py{310,311,312}-test-numpy{123,124,125,126}
3+
py{310,311,312,313}-test{,-alldeps,-devdeps,-oldestdeps,-devinfra}{,-cov}
4+
py{310,311,312,313}-test-numpy{123,124,125,126,200}
55
build_docs
66
linkcheck
77
codestyle
@@ -44,6 +44,7 @@ description =
4444
numpy124: with numpy 1.24.*
4545
numpy125: with numpy 1.25.*
4646
numpy126: with numpy 1.26.*
47+
numpy200: with numpy 2.0.*
4748
casa: with casatools and casatasks
4849

4950
# The following provides some specific pinnings for key packages
@@ -54,6 +55,7 @@ deps =
5455
numpy124: numpy==1.24.*
5556
numpy125: numpy==1.25.*
5657
numpy126: numpy==1.26.*
58+
numpy200: numpy==2.0.*
5759

5860
casa: :NRAO:casatools
5961
casa: :NRAO:casatasks

0 commit comments

Comments
 (0)