Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: asdf-format/asdf-standard
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: bf841fefeff92de9827090562027a0f635a6bab1
Choose a base ref
..
head repository: asdf-format/asdf-standard
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 590bf8798110876bee90285afc6ac86e4f43443e
Choose a head ref
Showing with 7 additions and 11 deletions.
  1. +3 −3 .github/workflows/ci.yml
  2. +3 −7 .github/workflows/downstream.yml
  3. +1 −1 tox.ini
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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
@@ -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
10 changes: 3 additions & 7 deletions .github/workflows/downstream.yml
Original file line number Diff line number Diff line change
@@ -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]
@@ -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
@@ -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
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]