Skip to content

Commit 2dc3248

Browse files
committed
start testing python 3.14
1 parent 9c66691 commit 2dc3248

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/pytest.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
python-version: ["3.10", "3.11", "3.12", "3.13"]
19+
python-version: ["3.11", "3.12", "3.13", "3.14"]
2020

2121
steps:
2222
- uses: actions/checkout@v5
@@ -25,6 +25,7 @@ jobs:
2525
uses: actions/setup-python@v6
2626
with:
2727
python-version: ${{ matrix.python-version }}
28+
allow-prereleases: true
2829
cache: "pip"
2930

3031
- name: Install dependencies

.github/workflows/regtest.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
python-version: ["3.10", "3.11", "3.12", "3.13"]
19+
python-version: ["3.11", "3.12", "3.13", "3.14"]
2020

2121
steps:
2222
- uses: actions/checkout@v5
@@ -25,6 +25,7 @@ jobs:
2525
uses: actions/setup-python@v6
2626
with:
2727
python-version: ${{ matrix.python-version }}
28+
allow-prereleases: true
2829
cache: "pip"
2930

3031
- name: Install dependencies

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ numpy>=1.13.3
22
matplotlib>=2.0.0
33
h5py>=2.7
44
scipy>=0.16
5-
numba>=0.40.0
5+
numba==0.63.0b1
66

77
pytest>=3.6
88
nbval>=0.9.0

0 commit comments

Comments
 (0)