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
8 changes: 4 additions & 4 deletions .github/workflows/ci_crontests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ jobs:
fail-fast: false
matrix:
include:
- name: py3.12 pre-release all deps
- name: py3.13 pre-release all deps
os: ubuntu-latest
python: '3.12'
toxenv: py312-test-alldeps-predeps
python: '3.13'
toxenv: py313-test-alldeps-predeps
toxargs: -v
toxposargs: -v

- name: Documentation build with linkcheck
os: ubuntu-latest
python: '3.10'
python: '3.12'
toxenv: linkcheck

steps:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci_devtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ jobs:
include:
- name: dev dependencies with all dependencies with coverage
os: ubuntu-latest
python: '3.12'
toxenv: py312-test-alldeps-devdeps-cov
python: '3.13'
toxenv: py313-test-alldeps-devdeps-cov
toxargs: -v

- name: Python 3.13
- name: Python 3.14
os: ubuntu-latest
python: '3.13'
toxenv: py313-test
python: '3.14'
toxenv: py314-test
toxargs: -v

steps:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci_online_crontests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ jobs:
fail-fast: false
matrix:
include:
- name: py3.12 all dev deps online
- name: py3.13 all dev deps online
os: ubuntu-latest
python: '3.12'
toxenv: py312-test-alldeps-devdeps-online
python: '3.13'
toxenv: py313-test-alldeps-devdeps-online
toxargs: -v
toxposargs: -v --durations=50

- name: Windows py3.9 all deps online
- name: Windows py3.12 all deps online
os: windows-latest
python: '3.9'
toxenv: py39-test-alldeps-online
python: '3.12'
toxenv: py312-test-alldeps-online
toxargs: -v
toxposargs: -v --durations=50

Expand Down
4 changes: 1 addition & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{310,311,312,313}-test{,-alldeps,-oldestdeps,-devdeps,-predeps}{,-online}{,-cov}
py{310,311,312,313,314}-test{,-alldeps,-oldestdeps,-devdeps,-predeps}{,-online}{,-cov}
codestyle
linkcheck
build_docs
Expand All @@ -27,8 +27,6 @@ setenv =
online: PYTEST_ARGS_2 = --remote-data=any -m "not bigdata" -vv --last-failed --last-failed-no-failures none --suppress-no-test-exit-code
online: SINGLE_RUN = False
devdeps: PIP_EXTRA_INDEX_URL = https://pypi.anaconda.org/scientific-python-nightly-wheels/simple https://pypi.anaconda.org/astropy/simple https://pypi.anaconda.org/liberfa/simple
# astropy doesn't yet have a 3.13 compatible release
py313: PIP_EXTRA_INDEX_URL = https://pypi.anaconda.org/astropy/simple https://pypi.anaconda.org/liberfa/simple

deps =
devdeps: numpy>=0.0.dev0
Expand Down
Loading