Skip to content

Commit 1d1f3ea

Browse files
committed
wip
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent 4fa5a35 commit 1d1f3ea

File tree

3 files changed

+12
-14
lines changed

3 files changed

+12
-14
lines changed

.github/workflows/python.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
- python-version: '3.13' # latest
7878
os: ubuntu-latest
7979
toxenv-factors: '-current'
80-
- python-version: '3.8' # lowest
80+
- python-version: '3.9' # lowest
8181
os: ubuntu-latest
8282
toxenv-factors: '-lowest'
8383
steps:
@@ -169,8 +169,7 @@ jobs:
169169
- "3.12"
170170
- "3.11"
171171
- "3.10"
172-
- "3.9"
173-
- "3.8" # lowest supported -- handled in include
172+
- "3.9" # lowest supported -- handled in include
174173
steps:
175174
- name: Checkout
176175
# see https://github.com/actions/checkout

docs/upgrading.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This document is not a full :doc:`change log <changelog>`, but a migration path.
1010
Python support
1111
--------------
1212

13-
* This tool requires Python 3.8 or later.
13+
* This tool requires Python 3.9 or later.
1414
It is tested with CPython, support for PyPy is best effort.
1515

1616

pyproject.toml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ classifiers = [
5252
"Topic :: Software Development",
5353
"Topic :: System :: Software Distribution",
5454
"License :: OSI Approved :: Apache Software License",
55-
"Programming Language :: Python :: 3.8",
5655
"Programming Language :: Python :: 3.9",
5756
"Programming Language :: Python :: 3.10",
5857
"Programming Language :: Python :: 3.11",
@@ -78,21 +77,21 @@ chardet = "^5.1"
7877

7978
[tool.poetry.group.dev.dependencies]
8079
# pin to exact versions, if the tool/lib/plugin is process-relevant
81-
coverage = "7.6.1"
80+
coverage = "7.8.0"
8281
ddt = "1.7.2"
83-
flake8 = { version = "7.1.2", python = ">=3.8.1" }
84-
flake8-annotations = { version = "3.1.1", python = ">=3.8.1" }
85-
flake8-bugbear = { version = "24.12.12", python = ">=3.8.1" }
82+
flake8 = "7.2.0"
83+
flake8-annotations = "3.1.1"
84+
flake8-bugbear = "24.12.12"
8685
flake8-copyright-validator = "^0.0.1"
87-
flake8-isort = "6.1.1"
86+
flake8-isort = "6.1.2"
8887
flake8-quotes = "3.4.0"
8988
flake8-use-fstring = "1.4"
9089
pep8-naming = "0.14.1"
9190
flake8-logging = "1.6.0"
92-
isort = "5.13.2"
93-
autopep8 = "2.3.1"
94-
mypy = "1.14.1"
95-
bandit = "1.7.10"
91+
isort = "6.0.1"
92+
autopep8 = "2.3.2"
93+
mypy = "1.15.0"
94+
bandit = "1.8.3"
9695
tomli = { version = "^2.0.1", python = "<3.11" }
9796
tox = "4.25.0"
9897

0 commit comments

Comments
 (0)