Skip to content

Commit f9c79e8

Browse files
committed
Drop support for Python 3.8
numpy and other projects have already dropped support for it.
1 parent 8291144 commit f9c79e8

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
strategy:
3939
fail-fast: false
4040
matrix:
41-
python-version: ["3.8", "3.9", "3.10", "3.11"]
41+
python-version: ["3.9", "3.10", "3.11"]
4242

4343
steps:
4444
- uses: actions/checkout@v3

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ long_description_content_type = text/markdown
77
author = "Coastal Environmental Modelling team, Oceans and Atmosphere, CSIRO"
88
author_email = "[email protected]"
99
license = "BSD-3-Clause"
10+
python_requires = ">=3.9"
1011

1112
project_urls =
1213
Documentation = https://emsarray.readthedocs.io/

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
isolated_build = true
33
envlist =
4-
py{38,39,310,311}-pytest
4+
py{39,310,311}-pytest
55
lint,docs
66
skip_missing_interpreters = true
77
requires =
@@ -25,7 +25,7 @@ conda_deps =
2525
# Install the python dependencies through pip
2626
deps = -rcontinuous-integration/requirements.txt
2727

28-
[testenv:py{38,39,310,311}-pytest]
28+
[testenv:py{39,310,311}-pytest]
2929
commands =
3030
pytest \
3131
--junitxml=junit-{envname}.xml \

0 commit comments

Comments
 (0)