Skip to content

Commit f751d89

Browse files
constrain Python version <3.14 because of batman-package availability
1 parent 937bdeb commit f751d89

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
- ubuntu-latest
1919
- macos-latest
2020
python-version:
21+
- "3.11"
2122
- "3.12"
2223
- "3.13"
23-
- "3.14"
2424
fail-fast: false
2525
runs-on: ${{ matrix.runs-on }}
2626
name: build frozen environment for Python ${{ matrix.python-version }} on ${{ matrix.runs-on }}

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ authors = [
2828
]
2929
keywords = ["astronomy", "python"]
3030
classifiers = ["Programming Language :: Python"]
31-
requires-python = ">=3.11"
31+
requires-python = ">=3.11,<3.14"
3232
dependencies = [
3333
'asdf>=3.4.0',
3434
'astropy>=6.1.3',
@@ -95,4 +95,4 @@ namespaces = false
9595
[tool.setuptools_scm]
9696

9797
[tool.pytest]
98-
junit_family = "xunit2"
98+
junit_family = "xunit2"

0 commit comments

Comments
 (0)