Skip to content

Commit

Permalink
Merge pull request #110 from braingram/standard_1p6p0
Browse files Browse the repository at this point in the history
Update schemas for ASDF standard 1.6.0
  • Loading branch information
braingram authored Mar 7, 2024
2 parents 10a757c + 00d79f6 commit b329bc8
Show file tree
Hide file tree
Showing 107 changed files with 5,270 additions and 16 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ jobs:
strategy:
matrix:
include:
- name: Python 3.12 Schema validation tests
python-version: '3.12'
os: ubuntu-latest
toxenv: py312

- name: Python 3.11 Schema validation tests
python-version: '3.11'
os: ubuntu-latest
toxenv: py310

- name: Python 3.10 Schema validation tests
python-version: '3.10'
os: ubuntu-latest
Expand All @@ -27,11 +37,6 @@ jobs:
os: ubuntu-latest
toxenv: py39

- name: Python 3.8 Schema validation tests
python-version: 3.8
os: ubuntu-latest
toxenv: py38

- name: Twine check
python-version: 3.9
os: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

- Move root-level $ref in schemas to an allOf combiner. [#87]
- Fix URI fragment format in transform-1.2 schema. [#88]
- Update schemas for ASDF standard 1.6.0 [#110]

0.3.0 (2022-08-22)
------------------
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@
name = 'asdf_transform_schemas'
description = 'ASDF schemas for transforms'
readme = 'README.md'
requires-python = '>=3.8'
requires-python = '>=3.9'
license = { file = 'LICENSE' }
authors = [{ name = 'The ASDF Developers', email = '[email protected]' }]
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Development Status :: 5 - Production/Stable',
]
dependencies = [
'asdf-standard >= 1.0.1',
'importlib_resources >= 3; python_version<"3.9"',
'asdf-standard >= 1.1.0',
]
dynamic = ['version']

Expand Down
Loading

0 comments on commit b329bc8

Please sign in to comment.