Skip to content

Commit

Permalink
drop python 3.8 update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
braingram committed Mar 5, 2024
1 parent 18b5edb commit 1d47481
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 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
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

0 comments on commit 1d47481

Please sign in to comment.