Skip to content

Commit

Permalink
drop Python 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
amorison committed Aug 29, 2024
1 parent c8aa3c3 commit 9056222
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
py: ['3.8', '3.9', '3.10', '3.11', '3.12']
py: ['3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,12 @@ classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"dmsuite>=0.3,<0.4",
"numpy>=1.21",
Expand Down
2 changes: 0 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[tox]
envlist =
py38
py39
py310
py311
Expand Down Expand Up @@ -43,7 +42,6 @@ commands =

[gh]
python =
3.8 = py38, mypy
3.9 = py39, mypy
3.10 = py310, mypy
3.11 = py311, mypy
Expand Down

0 comments on commit 9056222

Please sign in to comment.