Skip to content

Commit

Permalink
drop support for Python 3.8 (#162)
Browse files Browse the repository at this point in the history
* drop support for Python 3.8

* add change log entry

* use Mamba and install graphviz

* remove Python 3.8 jobs
  • Loading branch information
zacharyburnett authored Apr 19, 2023
1 parent 6591ae1 commit 4ee4de2
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 8 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@ jobs:
with:
envs: |
- linux: test-oldestdeps-cov-xdist
python-version: 3.8
- linux: test-xdist
python-version: '3.8'
python-version: 3.9
- linux: test-xdist
python-version: '3.9'
- linux: test-xdist
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/ci_cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ jobs:
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1
with:
envs: |
- macos: test-xdist
python-version: 3.8
- macos: test-xdist
python-version: 3.9
- macos: test-xdist
Expand Down
10 changes: 9 additions & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,17 @@ formats:
- htmlzip
- pdf

build:
os: ubuntu-22.04
tools:
python: mambaforge-4.10

conda:
environment: docs/rtd_environment.yaml

# Optionally set the version of Python and requirements required to build your docs
python:
version: 3.8
system_packages: false
install:
- method: pip
path: .
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Bug Fixes
Changes to API
--------------

-
- drop support for Python 3.8 [#162]

Other
-----
Expand Down
8 changes: 8 additions & 0 deletions docs/rtd_environment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: rtd311
channels:
- conda-forge
- defaults
dependencies:
- python=3.11
- pip
- graphviz
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = 'stcal'
description = 'STScI tools and algorithms used in calibration pipelines'
readme = 'README.md'
requires-python = '>=3.8'
requires-python = '>=3.9'
license = { file = 'LICENSE' }
authors = [{ name = 'STScI', email = '[email protected]' }]
classifiers = [
Expand Down

0 comments on commit 4ee4de2

Please sign in to comment.