Skip to content

Commit e296c6a

Browse files
authored
Test against Python 3.13 (#2058)
* test python 3.13 * missing changes
1 parent 725fc72 commit e296c6a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
20-
python-version: ["3.9","3.10","3.12"]
20+
python-version: ["3.9","3.10","3.13"]
2121

2222
steps:
2323
- uses: actions/checkout@v2
@@ -56,7 +56,7 @@ jobs:
5656
needs: lint
5757
strategy:
5858
matrix:
59-
python-version: ["3.9", "3.10"]
59+
python-version: ["3.9", "3.13"]
6060

6161
steps:
6262
- uses: actions/checkout@v2
@@ -82,7 +82,7 @@ jobs:
8282
run: |
8383
JAX_ENABLE_X64=1 pytest -vs test/test_distributions.py -k "powerLaw or Dagum"
8484
- name: Test tracer leak
85-
if: matrix.python-version == '3.10'
85+
if: matrix.python-version == '3.13'
8686
env:
8787
JAX_CHECK_TRACER_LEAKS: 1
8888
run: |
@@ -94,7 +94,7 @@ jobs:
9494
pytest -vs test/test_distributions.py::test_mean_var -k Gompertz
9595
9696
- name: Coveralls
97-
if: github.repository == 'pyro-ppl/numpyro' && matrix.python-version == '3.10'
97+
if: github.repository == 'pyro-ppl/numpyro' && matrix.python-version == '3.13'
9898
uses: coverallsapp/github-action@v2
9999
with:
100100
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -108,7 +108,7 @@ jobs:
108108
needs: lint
109109
strategy:
110110
matrix:
111-
python-version: ["3.9", "3.10"]
111+
python-version: ["3.9", "3.13"]
112112

113113
steps:
114114
- uses: actions/checkout@v2
@@ -147,7 +147,7 @@ jobs:
147147
run: |
148148
JAX_ENABLE_X64=1 pytest -vs test/contrib/test_nested_sampling.py
149149
- name: Coveralls
150-
if: github.repository == 'pyro-ppl/numpyro' && matrix.python-version == '3.10'
150+
if: github.repository == 'pyro-ppl/numpyro' && matrix.python-version == '3.13'
151151
uses: coverallsapp/github-action@v2
152152
with:
153153
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -161,7 +161,7 @@ jobs:
161161
needs: lint
162162
strategy:
163163
matrix:
164-
python-version: ["3.10"]
164+
python-version: ["3.13"]
165165

166166
steps:
167167
- uses: actions/checkout@v2
@@ -181,7 +181,7 @@ jobs:
181181
run: |
182182
CI=1 XLA_FLAGS="--xla_force_host_platform_device_count=2" pytest -vs -k test_example
183183
- name: Coveralls
184-
if: github.repository == 'pyro-ppl/numpyro' && matrix.python-version == '3.10'
184+
if: github.repository == 'pyro-ppl/numpyro' && matrix.python-version == '3.13'
185185
uses: coverallsapp/github-action@v2
186186
with:
187187
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)