Skip to content

Commit 2f701c1

Browse files
authored
AAP-51351 [devel-only] Drop python 3.9, add 3.12 (#842)
1 parent 48005cd commit 2f701c1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
python-version: "3.11"
1919
sonar: false
2020
junit-xml-upload: false
21-
- env: py39
22-
python-version: "3.9"
21+
- env: py312
22+
python-version: "3.12"
2323
sonar: false
2424
junit-xml-upload: false
2525
- env: py310

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ authors = [
99
]
1010
description = "A Django app used by ansible services"
1111
readme = "README.md"
12-
requires-python = ">=3.9"
12+
requires-python = ">=3.10"
1313
keywords = ["ansible", "django"]
1414
license = {text = "Apache-2.0"}
1515
classifiers = [
@@ -23,9 +23,9 @@ classifiers = [
2323
"License :: OSI Approved :: Apache Software License",
2424
"Programming Language :: Python",
2525
"Programming Language :: Python :: 3",
26-
"Programming Language :: Python :: 3.9",
2726
"Programming Language :: Python :: 3.10",
2827
"Programming Language :: Python :: 3.11",
28+
"Programming Language :: Python :: 3.12",
2929
]
3030
dynamic = ["version", "dependencies", "optional-dependencies"]
3131

@@ -98,12 +98,12 @@ legacy_tox_ini = """
9898
no_package = true
9999
env_list =
100100
check
101-
py39
101+
py312
102102
py310
103103
py311
104104
py311sqlite
105105
labels =
106-
test = py39, py310, py311, py311sqlite, check
106+
test = py312, py310, py311, py311sqlite, check
107107
lint = flake8, black, isort
108108
109109
[testenv]

0 commit comments

Comments
 (0)