Skip to content

Commit e198ef5

Browse files
committed
Python 3.9 drop
1 parent c419b07 commit e198ef5

File tree

5 files changed

+9
-137
lines changed

5 files changed

+9
-137
lines changed

.github/workflows/python-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
17-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
17+
python-version: ['3.10', '3.11', '3.12', '3.13']
1818
os: [windows-latest, ubuntu-latest]
1919
fail-fast: false
2020
steps:

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ repos:
1313
rev: v3.21.2
1414
hooks:
1515
- id: pyupgrade
16-
args: ["--py39-plus"]
16+
args: ["--py310-plus"]
1717

1818
- repo: https://github.com/psf/black-pre-commit-mirror
1919
rev: 25.12.0

poetry.lock

Lines changed: 5 additions & 132 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,14 @@ authors = [
77
]
88
license = "Apache-2.0"
99
readme = "README.rst"
10-
requires-python = ">=3.9,<4.0"
10+
requires-python = ">=3.10,<4.0"
1111
keywords = ["openapi", "swagger", "schema"]
1212
classifiers = [
1313
"Development Status :: 4 - Beta",
1414
"Intended Audience :: Developers",
1515
"Topic :: Software Development :: Libraries :: Python Modules",
1616
"Operating System :: OS Independent",
1717
"Programming Language :: Python :: 3",
18-
"Programming Language :: Python :: 3.9",
1918
"Programming Language :: Python :: 3.10",
2019
"Programming Language :: Python :: 3.11",
2120
"Programming Language :: Python :: 3.12",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{3.9,3.10,3.11,3.12,3.13}
3+
py{3.10,3.11,3.12,3.13}
44

55
[testenv]
66
skip_install = true

0 commit comments

Comments
 (0)