Skip to content

Commit

Permalink
Updated python version list
Browse files Browse the repository at this point in the history
- Python 3.8 reached EOL and was removed from list.
- 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 bdb818e commit 220e509
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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']

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

0 comments on commit 220e509

Please sign in to comment.