Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update python versions in ci #428

Merged
merged 3 commits into from
Mar 5, 2024
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
with:
submodules: false
# Any env name which does not start with `pyXY` will use this Python version.
default_python: '3.9'
default_python: '3.11'
envs: |
- macos: py39
- windows: py39
Expand Down Expand Up @@ -66,10 +66,10 @@ jobs:
fetch-depth: 0
repository: asdf-format/asdf
path: asdf
- name: Set up Python 3.9
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.11
- name: Install asdf-standard
run: cd asdf-standard && pip install .
- name: Install asdf
Expand Down
10 changes: 3 additions & 7 deletions .github/workflows/downstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,6 @@ jobs:
fail-fast: false
matrix:
include:
- package_name: astropy
repository: astropy/astropy
install_command: pip install -e .[test]
test_command: pytest
- package_name: gwcs
repository: spacetelescope/gwcs
install_command: pip install -e .[test]
Expand All @@ -54,7 +50,7 @@ jobs:
test_command: pytest
- package_name: weldx
repository: BAMWelDX/weldx
install_command: pip install -e .[test]
install_command: pip install -e .[test,media]
test_command: pytest weldx/tests/asdf_tests weldx/schemas --asdf-tests
- package_name: sunpy
repository: sunpy/sunpy
Expand Down Expand Up @@ -97,10 +93,10 @@ jobs:
fetch-depth: 0
repository: ${{ matrix.repository }}
path: target
- name: Set up Python 3.9
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.11
- name: Install asdf-standard
run: cd asdf-standard && pip install .
- name: Install remaining ${{ matrix.package_name }} dependencies
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py39, py310, py311
envlist = py39, py310, py311, py312
isolated_build = True

[testenv]
Expand Down
Loading