Skip to content

Commit ab80a20

Browse files
committed
drop support for Python 3.8
1 parent 048be17 commit ab80a20

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.github/workflows/tox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
py: ['3.8', '3.9', '3.10', '3.11', '3.12']
17+
py: ['3.9', '3.10', '3.11', '3.12']
1818

1919
steps:
2020
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,12 @@ classifiers = [
2222
"Intended Audience :: Science/Research",
2323
"License :: OSI Approved :: Apache Software License",
2424
"Programming Language :: Python :: 3 :: Only",
25-
"Programming Language :: Python :: 3.8",
2625
"Programming Language :: Python :: 3.9",
2726
"Programming Language :: Python :: 3.10",
2827
"Programming Language :: Python :: 3.11",
2928
"Programming Language :: Python :: 3.12",
3029
]
31-
requires-python = ">=3.8"
30+
requires-python = ">=3.9"
3231
dependencies = [
3332
"loam>=0.8.0,<0.9.0",
3433
"f90nml>=1.4.4",

tox.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[tox]
22
envlist =
3-
py38
43
py39
54
py310
65
py311
@@ -46,7 +45,6 @@ commands =
4645

4746
[gh]
4847
python =
49-
3.8 = py38, mypy
5048
3.9 = py39, mypy
5149
3.10 = py310, mypy
5250
3.11 = py311, mypy

0 commit comments

Comments
 (0)