Skip to content
This repository has been archived by the owner on Aug 6, 2024. It is now read-only.

Commit

Permalink
drop python 3.7
Browse files Browse the repository at this point in the history
Signed-off-by: Nathaniel Starkman (@nstarman) <nstarkman@protonmail.com>
  • Loading branch information
nstarman committed Sep 11, 2021
1 parent dcc3a78 commit 12e78bf
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci_cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ jobs:
# that gives too many false positives due to URL timeouts. We also
# install all dependencies via pip here so we pick up the latest
# releases.
- name: Python 3.7 with dev version of key dependencies
- name: Python 3.8 with dev version of key dependencies
os: ubuntu-latest
python: 3.7
toxenv: py37-test-devdeps
python: 3.8
toxenv: py38-test-devdeps

- name: Documentation link check
os: ubuntu-latest
python: 3.7
python: 3.8
toxenv: linkcheck

- name: Bundling with pyinstaller
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,25 +119,25 @@ jobs:
matrix:
include:

- name: py3.8 - all deps, remote data | coverage
- name: py3.9 - all deps, remote data | coverage
os: ubuntu-latest
python: 3.8
toxenv: py38-test-alldeps-cov
python: 3.9
toxenv: py39-test-alldeps-cov
toxargs: -v --develop
toxposargs: --durations=50 --remote-data=any # in case it runs long

# NOTE: In the build below we also check that tests do not open and
# leave open any files. This has a performance impact on running the
# tests, hence why it is not enabled by default.
- name: py3.7 - oldest deps
- name: py3.8 - oldest deps
os: ubuntu-16.04
python: 3.7
toxenv: py37-test-oldestdeps
python: 3.8
toxenv: py38-test-oldestdeps

- name: py3.7 - all deps, numpy 1.17 | coverage
- name: py3.8 - all deps, numpy 1.17 | coverage
os: ubuntu-latest
python: 3.7
toxenv: py37-test-alldeps-numpy117-cov-clocale
python: 3.8
toxenv: py38-test-alldeps-numpy117-cov-clocale
# toxposargs: --remote-data=discO

- name: py3.8 - all deps (MacOS X)
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:

matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python: [3.7, 3.8]
python: [3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ github_project = nstarman/discO
[options]
zip_safe = False
packages = find:
python_requires = >=3.7
python_requires = >=3.8
setup_requires = setuptools_scm
install_requires =
astropy
Expand Down

0 comments on commit 12e78bf

Please sign in to comment.