Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/compatibility.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python: ['3.13']
toxenv: [py313-test, py313-test-dev]
python: ['3.14']
toxenv: [py314-test, py314-test-dev]
release: [main, latest]
steps:
- name: Checkout Repository
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:

- name: latest supported versions
os: ubuntu-latest
python: '3.13'
toxenv: py313-test-all-latest-cov
python: '3.14'
toxenv: py314-test-all-latest-cov
toxposargs: --cov-report=xml:${GITHUB_WORKSPACE}/coverage.xml

- name: oldest supported versions
Expand All @@ -34,13 +34,13 @@ jobs:

- name: macOS latest supported
os: macos-latest
python: '3.13'
toxenv: py313-test-latest
python: '3.14'
toxenv: py314-test-latest

- name: Windows latest supported
os: windows-latest
python: '3.13'
toxenv: py313-test-latest
python: '3.14'
toxenv: py314-test-latest

steps:
- name: Checkout Repository
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
build:
os: ubuntu-20.04
tools:
python: '3.13'
python: '3.14'
apt_packages:
- graphviz

Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tox]
envlist =
py{310,311,312,313}-test{,-all}{,-dev,-latest,-oldest}{,-cov}
py{310,311,312,313}-test-numpy{121,122,123,124,125,126,20,21,22,23,24}
py{310,311,312,313}-test-scipy{18,19,110,111,112,113,114,115,116,117}
py{310,311,312,313}-test-astropy{50,51,52,53,60,61,70,71,72}
py{310,311,312,313,314}-test{,-all}{,-dev,-latest,-oldest}{,-cov}
py{310,311,312,313,314}-test-numpy{121,122,123,124,125,126,20,21,22,23,24}
py{310,311,312,313,314}-test-scipy{18,19,110,111,112,113,114,115,116,117}
py{310,311,312,313,314}-test-astropy{50,51,52,53,60,61,70,71,72}
build_docs
linkcheck
codestyle
Expand Down