Skip to content

Commit 656ae21

Browse files
committed
Drop support for Python 3.8
1 parent e3af97e commit 656ae21

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

.github/workflows/deploy.yml

+3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ on:
1414
permissions:
1515
contents: read
1616

17+
env:
18+
FORCE_COLOR: 1
19+
1720
jobs:
1821
# Always build & lint package.
1922
build-package:

.github/workflows/lint.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on: [push, pull_request, workflow_dispatch]
44

55
env:
66
FORCE_COLOR: 1
7+
PIP_DISABLE_PIP_VERSION_CHECK: 1
78

89
permissions:
910
contents: read

.github/workflows/test.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: Test
22

33
on: [push, pull_request, workflow_dispatch]
44

5+
permissions:
6+
contents: read
7+
58
env:
69
FORCE_COLOR: 1
710

@@ -11,7 +14,7 @@ jobs:
1114
strategy:
1215
fail-fast: false
1316
matrix:
14-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
17+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1518
os: [windows-latest, macos-latest, ubuntu-latest]
1619

1720
steps:
@@ -26,7 +29,6 @@ jobs:
2629
- name: Install dependencies
2730
run: |
2831
python -m pip install -U pip
29-
python -m pip install -U wheel
3032
python -m pip install -U tox
3133
3234
- name: Tox tests

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,11 @@ keywords = [
2020
license = { text = "MIT" }
2121
maintainers = [ { name = "Hugo van Kemenade" } ]
2222
authors = [ { name = "Marcus Volz" } ]
23-
requires-python = ">=3.8"
23+
requires-python = ">=3.9"
2424
classifiers = [
2525
"Development Status :: 3 - Alpha",
2626
"License :: OSI Approved :: MIT License",
2727
"Programming Language :: Python :: 3 :: Only",
28-
"Programming Language :: Python :: 3.8",
2928
"Programming Language :: Python :: 3.9",
3029
"Programming Language :: Python :: 3.10",
3130
"Programming Language :: Python :: 3.11",

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires =
33
tox>=4.2
44
env_list =
55
lint
6-
py{312, 311, 310, 39, 38}
6+
py{312, 311, 310, 39}
77

88
[testenv]
99
pass_env =

0 commit comments

Comments
 (0)