Skip to content

Commit 9fffef4

Browse files
authored
Remove support for Python 3.8. (#158)
Remove support for Python 3.8. Closes #152
1 parent 61dd30c commit 9fffef4

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
11+
python-version: ['3.9', '3.10', '3.11', '3.12']
1212
app-version: ['v0.1.1'] # Add more app versions as needed
1313
steps:
1414
- uses: actions/checkout@v3

.github/workflows/unit_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: true
1818
matrix:
19-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
19+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2020

2121
steps:
2222
- uses: actions/checkout@v3

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{38,39,310,311,312}, lint, type
2+
envlist = py{39,310,311,312}, lint, type
33
isolated_build = true
44

55
[testenv]

0 commit comments

Comments
 (0)