Skip to content

Commit

Permalink
Since require Numpy<2.0, remove Python 3.13
Browse files Browse the repository at this point in the history
	modified:   .github/workflows/ci_tests.yml
	modified:   environment.yml
	modified:   setup.cfg
	modified:   tox.ini
  • Loading branch information
tbowers7 committed Nov 5, 2024
1 parent 8ed038a commit 9cbb94b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
- ubuntu-latest
python:
- "3.12"
- "3.13"
toxenv:
- test-numpydev
- test-astropydev
Expand Down Expand Up @@ -48,7 +47,6 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
toxenv:
- test
- test-alldeps
Expand All @@ -72,7 +70,7 @@ jobs:
- name: Conda environment check
uses: actions/setup-python@v4
with:
python-version: "3.13"
python-version: "3.12"
- name: Install base dependencies
run: |
python -m pip install --upgrade pip tox
Expand All @@ -86,7 +84,7 @@ jobs:
- name: Python codestyle check
uses: actions/setup-python@v4
with:
python-version: "3.13"
python-version: "3.12"
- name: Install base dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ name: obstools
channels:
- default
dependencies:
- python>=3.9,<3.12
- python>=3.10,<3.13
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ classifiers =
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Topic :: Documentation :: Sphinx
Topic :: Scientific/Engineering :: Astronomy
Topic :: Software Development :: Libraries :: Python Modules
Expand All @@ -30,7 +29,7 @@ classifiers =
zip_safe = False
use_2to3=False
packages = find:
python_requires = >=3.10,<3.14
python_requires = >=3.10,<3.13
setup_requires = setuptools_scm
include_package_data = True
install_requires =
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tox]
envlist =
{3.10,3.11,3.12,3.13}-test{,-alldeps}
{3.10,3.11,3.12,3.13}-test-numpy{124,125,126,200,201}
{3.10,3.11,3.12,3.13}-test-{numpy,astropy}dev
{3.10,3.11,3.12}-test{,-alldeps}
{3.10,3.11,3.12}-test-numpy{124,125,126,200,201}
{3.10,3.11,3.12}-test-{numpy,astropy}dev
codestyle
requires =
setuptools >= 65.0
Expand Down

0 comments on commit 9cbb94b

Please sign in to comment.