Skip to content

Commit

Permalink
Have to bump Python
Browse files Browse the repository at this point in the history
to get rid of oldest-supported-numpy
  • Loading branch information
pllim committed Sep 8, 2023
1 parent 9225e99 commit 39d2793
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci_workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ jobs:

- name: Test with old dependencies
os: ubuntu-20.04
python: 3.8
toxenv: py38-test-oldestdeps
python: 3.9
toxenv: py39-test-oldestdeps

- name: Test in OSX
os: macos-latest
Expand All @@ -93,7 +93,7 @@ jobs:
# NOTE: If TRDS cannot take the hit, disable --remote-data
- name: Test in Windows with remote data
os: windows-latest
python: 3.9
python: '3.11'
toxenv: py39-test-alldeps
toxposargs: --remote-data

Expand Down
3 changes: 2 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

- Compatibility with ``numpy`` 2.0. [#363]

- Bumped minimum supported versions for ``astropy``` to 5.0. [#363]
- Bumped minimum supported versions for ``astropy``` to 5.0
and Python to 3.9. [#363]

1.2.1 (2023-06-01)
==================
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ reported) or contact `STScI Help Desk <https://hsthelp.stsci.edu>`_.
Installation and Setup
======================

**synphot** works for Python 3.8 or later only. It requires the following
**synphot** works for Python 3.9 or later only. It requires the following
packages:

* numpy
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ install_requires =
numpy>=1.18
astropy>=5
scipy>=1.3
python_requires = >=3.8
python_requires = >=3.9
[options.extras_require]
all =
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{38,39,310,311}-test{,-alldeps,-oldestdeps,-devdeps,-predeps}{,-cov}
py{39,310,311}-test{,-alldeps,-oldestdeps,-devdeps,-predeps}{,-cov}
codestyle
twine
bandit
Expand Down

0 comments on commit 39d2793

Please sign in to comment.