Skip to content

Commit

Permalink
Merge pull request #232 from braingram/py39_rip
Browse files Browse the repository at this point in the history
drop py39 try to fix oldestdeps
  • Loading branch information
braingram authored Jul 22, 2024
2 parents dab5b4d + f047a6b commit e7fbd71
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 16 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ jobs:
cache-restore-keys: |
pip-
# Any env name which does not start with `pyXY` will use this Python version.
default_python: '3.9'
default_python: '3.12'
envs: |
- linux: py39-parallel-cov
- linux: py310-test-parallel-cov
- linux: py311-test-devdeps-parallel-cov
- linux: py312-test-predeps-parallel-cov
coverage: codecov
Expand All @@ -50,7 +50,7 @@ jobs:
cache-key: pip-${{ needs.setup.outputs.requirements-hash }}
cache-restore-keys: |
pip-
default_python: '3.10'
default_python: '3.12'
envs: |
- linux: asdf
- linux: asdf-standard
Expand All @@ -66,7 +66,7 @@ jobs:
cache-restore-keys: |
pip-
# Any env name which does not start with `pyXY` will use this Python version.
default_python: '3.10'
default_python: '3.12'
envs: |
- linux: py310-test-parallel
- linux: py311-test-parallel
Expand All @@ -83,7 +83,7 @@ jobs:
cache-restore-keys: |
pip-
# Any env name which does not start with `pyXY` will use this Python version.
default_python: '3.9'
default_python: '3.12'
envs: |
- linux: py310-test-devdeps-parallel
- linux: py311-test-devdeps-parallel
Expand All @@ -98,9 +98,9 @@ jobs:
cache-restore-keys: |
pip-
# Any env name which does not start with `pyXY` will use this Python version.
default_python: '3.9'
default_python: '3.10'
envs: |
- linux: py39-test-oldestdep-parallels-cov
- linux: py310-test-oldestdeps-parallel-cov
coverage: codecov

wheel_building:
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build:
apt_packages:
- graphviz
tools:
python: "3.9"
python: "3.12"

sphinx:
fail_on_warning: true
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
- strip None factor for spectral_density in equivalency converter
to avoid deprecation warnings for astropy 7. [#229]

- drop support for python 3.9. [#232]


0.6.1 (2024-04-05)
------------------
Expand Down
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@ description = "ASDF serialization support for astropy"
readme = 'README.rst'
license = { file = 'LICENSE.rst' }
authors = [{ name = 'The Astropy Developers', email = '[email protected]' }]
requires-python = '>=3.9'
requires-python = '>=3.10'
classifiers = [
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
"Programming Language :: Python :: 3 :: Only",
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand All @@ -22,8 +21,8 @@ dependencies = [
"asdf-coordinates-schemas>=0.3",
"asdf-transform-schemas>=0.5",
"asdf-standard>=1.1.0",
"astropy>=5.0.4",
"numpy>=1.20",
"astropy>=5.2.0",
"numpy>=1.24",
"packaging>=19",
]
[project.optional-dependencies]
Expand Down
5 changes: 1 addition & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
[tox]
envlist =
py{39,310}-test{,-alldeps}
py38-test-devdeps{,-numpydev}
py38-cov
py39-test-oldestdep-parallels-cov
py{310,311,312}-test{,-devdeps,-predeps,-oldestdeps}{,-numpydev}{,-parallel}{,-cov}
requires =
setuptools >= 30.3.0
pip >= 19.3.1
Expand Down

0 comments on commit e7fbd71

Please sign in to comment.