Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
matrix:
# Test all supported Python versions under Ubuntu
os: [ubuntu-latest]
python-version: ['3.10', '3.11', '3.12', '3.13']
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
# Additionally, test one Python version under MacOS and Windows, to detect OS-specific issues
include:
- os: macos-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
matrix:
# Test all supported Python versions under Ubuntu
os: [ubuntu-latest]
python-version: ['3.10', '3.11', '3.12', '3.13']
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
# Additionally, test one Python version under MacOS and Windows, to detect OS-specific issues
include:
- os: macos-latest
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ authors = [{ name = "SNEWS Collaboration", email = "snews2.0@lists.bnl.gov" }]
license = { text = "BSD" }
readme = {file = "README.md", content-type = "text/markdown"}

requires-python = ">=3.9"
requires-python = ">=3.10"

dependencies = [
"numpy",
"scipy",
"astropy >= 4.3",
"astropy",
"pandas",
"tqdm",
"matplotlib",
Expand Down
Loading