WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9","3.10","3.13"]
python-version: ["3.9","3.14"]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
needs: lint
strategy:
matrix:
python-version: ["3.9", "3.13"]
python-version: ["3.9", "3.14"]

steps:
- uses: actions/checkout@v2
Expand All @@ -82,7 +82,7 @@ jobs:
run: |
JAX_ENABLE_X64=1 pytest -vs test/test_distributions.py -k "powerLaw or Dagum"
- name: Test tracer leak
if: matrix.python-version == '3.13'
if: matrix.python-version == '3.14'
env:
JAX_CHECK_TRACER_LEAKS: 1
run: |
Expand All @@ -93,7 +93,7 @@ jobs:
pytest -vs test/test_distributions.py::test_mean_var -k Gompertz

- name: Coveralls
if: github.repository == 'pyro-ppl/numpyro' && matrix.python-version == '3.13'
if: github.repository == 'pyro-ppl/numpyro' && matrix.python-version == '3.14'
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -107,7 +107,7 @@ jobs:
needs: lint
strategy:
matrix:
python-version: ["3.9", "3.13"]
python-version: ["3.9", "3.14"]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
run: |
JAX_ENABLE_X64=1 pytest -vs test/contrib/test_nested_sampling.py
- name: Coveralls
if: github.repository == 'pyro-ppl/numpyro' && matrix.python-version == '3.13'
if: github.repository == 'pyro-ppl/numpyro' && matrix.python-version == '3.14'
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -160,7 +160,7 @@ jobs:
needs: lint
strategy:
matrix:
python-version: ["3.13"]
python-version: ["3.14"]

steps:
- uses: actions/checkout@v2
Expand All @@ -180,7 +180,7 @@ jobs:
run: |
CI=1 XLA_FLAGS="--xla_force_host_platform_device_count=2" pytest -vs -k test_example
- name: Coveralls
if: github.repository == 'pyro-ppl/numpyro' && matrix.python-version == '3.13'
if: github.repository == 'pyro-ppl/numpyro' && matrix.python-version == '3.14'
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,5 +107,6 @@
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
],
)
Loading