Skip to content

Commit e9ca73d

Browse files
committed
drop python 3.9 support
1 parent 212ef2c commit e9ca73d

2 files changed

Lines changed: 13 additions & 16 deletions

File tree

.github/workflows/ci.yml

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,22 @@ jobs:
2424
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v2
2525
with:
2626
submodules: false
27-
# Any env name which does not start with `pyXY` will use this Python version.
28-
default_python: '3.10'
2927
envs: |
28+
- linux: coverage
29+
name: Python 3.14 coverage
30+
python-version: 3.14
31+
- linux: coverage
32+
name: Python 3.13 coverage
33+
python-version: 3.13
34+
- linux: coverage
35+
name: Python 3.12 coverage
36+
python-version: 3.12
3037
- linux: coverage
3138
name: Python 3.11 coverage
3239
python-version: 3.11
3340
- linux: coverage
3441
name: Python 3.10 coverage
3542
python-version: 3.10
36-
- linux: coverage
37-
name: Python 3.9 coverage
38-
python-version: 3.9
3943
coverage: 'codecov'
4044
secrets:
4145
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
@@ -45,24 +49,17 @@ jobs:
4549
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v2
4650
with:
4751
submodules: false
48-
# Any env name which does not start with `pyXY` will use this Python version.
49-
default_python: '3.9'
5052
envs: |
51-
- macos: py39-parallel
52-
- windows: py39-parallel
53+
- macos: py313-parallel
54+
- windows: py313-parallel
5355
5456
dev:
5557
needs: [core]
5658
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v2
5759
with:
5860
submodules: false
59-
# Any env name which does not start with `pyXY` will use this Python version.
60-
default_python: '3.9'
6161
envs: |
62-
- linux: py39-devdeps-parallel
63-
- linux: py310-devdeps-parallel
64-
- linux: py311-devdeps-parallel
65-
- linux: py312-devdeps-parallel
62+
- linux: py314-devdeps-parallel
6663
6764
package:
6865
needs: [core]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Asdf extension to support Zarr arrays"
44
readme = 'README.rst'
55
license-files = ['LICENSE']
66
authors = [{ name = 'The ASDF Developers' }]
7-
requires-python = '>=3.9'
7+
requires-python = '>=3.10'
88
classifiers = [
99
'Development Status :: 5 - Production/Stable',
1010
'Programming Language :: Python',

0 commit comments

Comments
 (0)