Skip to content

Commit

Permalink
drop python 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
falkben committed Dec 21, 2023
1 parent 443a9b9 commit 48856b3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci_workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
fail-fast: true
matrix:
include:
- name: Python 3.8 with minimal dependencies
- name: Python 3.9 with minimal dependencies
os: ubuntu-latest
python: 3.8
toxenv: py38-test
python: 3.9
toxenv: py39-test

- name: Python 3.9 with all optional dependencies
os: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion astrocut/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# This is the same check as the one at the top of setup.py
import sys

__minimum_python_version__ = "3.8"
__minimum_python_version__ = "3.9"


class UnsupportedPythonError(Exception):
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ github_project = spacetelescope/astrocut
[options]
zip_safe = False
packages = find:
python_requires = >=3.8
python_requires = >=3.9
setup_requires = setuptools_scm
install_requires =
astropy>=5.2 # astropy with s3fs support
Expand Down

0 comments on commit 48856b3

Please sign in to comment.