Skip to content

Commit

Permalink
maint: revert supporting python 3.13, this is blocked by pyerfa (astr…
Browse files Browse the repository at this point in the history
…opy mandatory dependency)
  • Loading branch information
ManonMarchand committed Oct 15, 2024
1 parent 99dd1f2 commit f80d47c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:
fail-fast: false
matrix:
os: [windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11','3.12', '3.13']
python-version: ['3.8', '3.9', '3.10', '3.11','3.12']
steps:
# Checkout the project
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
runs-on: macOS-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
# Checkout the project
- name: "Checkout branch ${{ github.head_ref }}"
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
# Checkout the project
- name: "Checkout branch ${{ github.head_ref }}"
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [unreleased]

## [0.17.2]
## [0.17.0]

### Added

Expand Down
6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
keywords=["astronomy", "astrophysics", "HEALPix"]

Expand All @@ -38,18 +37,17 @@ astropy_regions = ["regions"]
# for the documentation
docs = [
"astropy-sphinx-theme",
"astropy_healpix",
"nbsphinx",
"numpydoc",
"sphinx-astropy",
"sphinx-collections",
"sphinx-copybutton",
"sphinx-gallery",
"sphinxcontrib-bibtex"
"sphinxcontrib-bibtex",
"ipython" # for syntaxic coloration in docs
]
# for developpement
dev = [
"astropy_healpix",
"pre-commit >= 2.20",
"pytest > 6.0",
"pytest-mock",
Expand Down

0 comments on commit f80d47c

Please sign in to comment.