Skip to content

Commit

Permalink
Updated python compat version list
Browse files Browse the repository at this point in the history
- Python 3.8 reached EOL and was removed from list.
- Added python 3.12 and 3.13 to CI tests.

Notes:

- Numpy 2.0.0 is compatible with python 3.9-3.12 (https://numpy.org/doc/stable/release/2.0.0-notes.html)
- Numpy 2.1.0 adds 3.13 to "supported" python (https://numpy.org/doc/stable/release/2.1.0-notes.html)
  • Loading branch information
martinberoiz committed Oct 13, 2024
1 parent b6edd2d commit b3e9ce0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/aa-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@main
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@main
- name: Set up Python 3.9
- name: Set up Python
uses: actions/setup-python@main
with:
python-version: '3.9'
python-version: '3.12'
- name: Install coverage
run: pip install coverage
- name: Install astroalign dependencies
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "Astrometric Alignment of Images"
maintainers = [{ name = "Martin Beroiz", email = "[email protected]" }]
readme = "README.md"
dynamic = ["version"]
requires-python = ">=3.7"
requires-python = ">=3.9"
dependencies = ["numpy>=1.17", "scipy>=0.15", "scikit-image", "sep-pjw"]
license = { file = "LICENSE.txt" }
keywords = [
Expand Down

0 comments on commit b3e9ce0

Please sign in to comment.