Skip to content

Commit 642d55c

Browse files
committed
chore: drop Python 3.8 support
1 parent 5cb20df commit 642d55c

File tree

8 files changed

+2
-9
lines changed

8 files changed

+2
-9
lines changed

.copier-data.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ coverage_threshold: 100
77
default_py: '3.12'
88
development_status: Alpha
99
max_py: '3.12'
10-
min_py: '3.8'
10+
min_py: '3.9'
1111
module_name: ss_python
1212
organization_name: Serious Scaffold
1313
package_name: ss-python

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ jobs:
2626
strategy:
2727
matrix:
2828
python-version:
29-
- '3.8'
3029
- '3.9'
3130
- '3.10'
3231
- '3.11'

.github/workflows/devcontainer.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333
strategy:
3434
matrix:
3535
python-version:
36-
- '3.8'
3736
- '3.9'
3837
- '3.10'
3938
- '3.11'

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ jobs:
9898
strategy:
9999
matrix:
100100
python-version:
101-
- '3.8'
102101
- '3.9'
103102
- '3.10'
104103
- '3.11'

.gitlab/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ ci:
1010
parallel:
1111
matrix:
1212
- PYTHON_VERSION:
13-
- '3.8'
1413
- '3.9'
1514
- '3.10'
1615
- '3.11'

.gitlab/workflows/devcontainer.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ dev-container-publish:
33
parallel:
44
matrix:
55
- PYTHON_VERSION:
6-
- '3.8'
76
- '3.9'
87
- '3.10'
98
- '3.11'

.gitlab/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ container-publish:
3030
parallel:
3131
matrix:
3232
- PYTHON_VERSION:
33-
- '3.8'
3433
- '3.9'
3534
- '3.10'
3635
- '3.11'

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ classifiers = [
1515
"Programming Language :: Python :: 3.10",
1616
"Programming Language :: Python :: 3.11",
1717
"Programming Language :: Python :: 3.12",
18-
"Programming Language :: Python :: 3.8",
1918
"Programming Language :: Python :: 3.9",
2019
]
2120
dependencies = [
@@ -35,7 +34,7 @@ keywords = [
3534
license = {text = "MIT"}
3635
name = "ss-python"
3736
readme = "README.md"
38-
requires-python = ">=3.8"
37+
requires-python = ">=3.9"
3938

4039
[project.scripts]
4140
ss-python-cli = "ss_python.cli:app"

0 commit comments

Comments
 (0)