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/ci_cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python: ['3.11', '3.12', '3.13']
python: ['3.11', '3.12', '3.13', '3.14']
toxenv: [test, test-alldeps-cov, test-numpydev, test-gingadev, test-astropydev]
steps:
- name: Check out repository
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python: ['3.11', '3.12', '3.13']
python: ['3.11', '3.12', '3.13', '3.14']
toxenv: [test, test-alldeps-cov, test-numpydev, test-gingadev, test-astropydev]
steps:
- name: Check out repository
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
fail-fast: false
matrix:
os: [windows-latest, macos-latest]
python: ['3.11', '3.12', '3.13']
python: ['3.11', '3.12', '3.13', '3.14']
toxenv: [test-alldeps]
steps:
- name: Check out repository
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: pypeit
channels:
- conda-forge
dependencies:
- python>=3.11,<3.14
- python>=3.11,<3.15
- numpy
- astropy
- scipy
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
requires-python = ">=3.11,<3.14"
requires-python = ">=3.11,<3.15"
dependencies = [
"numpy>=2.4.1",
"astropy>=7.0",
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

[tox]
envlist =
{3.11,3.12,3.13}-test{,-alldeps}{,-cov}
{3.11,3.12,3.13}-test-{numpy,astropy,ginga}dev
{3.11,3.12,3.13,3.14}-test{,-alldeps}{,-cov}
{3.11,3.12,3.13,3.14}-test-{numpy,astropy,ginga}dev
codestyle
requires =
setuptools >= 65.0
Expand Down