Skip to content

Commit c657d0b

Browse files
Merge pull request #150 from django-commons/chore/drop-py39
Drop support for Python 3.9
2 parents 0c149b0 + ef8357c commit c657d0b

File tree

4 files changed

+3
-9
lines changed

4 files changed

+3
-9
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ jobs:
2828
matrix:
2929
python: ['3.10', '3.11', '3.12', '3.13']
3030
django: ['4.2', '5.1', '5.2']
31-
include:
32-
- python: '3.9'
33-
django: '4.2'
3431
exclude:
3532
- python: '3.13'
3633
django: '4.2'
@@ -64,7 +61,7 @@ jobs:
6461
- uses: actions/checkout@v4
6562
- uses: actions/setup-python@v5
6663
with:
67-
python-version: '3.10'
64+
python-version: '3.12'
6865

6966
- uses: ./.github/actions/build-js
7067
with:

.github/workflows/code_quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- uses: actions/checkout@v4
2626
- uses: actions/setup-python@v5
2727
with:
28-
python-version: '3.10'
28+
python-version: '3.12'
2929
- name: Install dependencies
3030
run: pip install tox
3131
- run: tox

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,13 @@ classifiers = [
2323
"Operating System :: MacOS",
2424
"Operating System :: Microsoft :: Windows",
2525
"Operating System :: OS Independent",
26-
"Programming Language :: Python :: 3.9",
2726
"Programming Language :: Python :: 3.10",
2827
"Programming Language :: Python :: 3.11",
2928
"Programming Language :: Python :: 3.12",
3029
"Programming Language :: Python :: 3.13",
3130
"Topic :: Software Development :: Libraries :: Python Modules",
3231
]
33-
requires-python = ">=3.8"
32+
requires-python = ">=3.10"
3433
dependencies = [
3534
"django>=4.2",
3635
"django-appconf",

tox.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[tox]
22
envlist =
3-
py{39}-django42
43
py{310,311,312}-django{42,51,52}
54
py{313}-django{51,52}
65
isort
@@ -11,7 +10,6 @@ skip_missing_interpreters = true
1110

1211
[gh-actions]
1312
python =
14-
3.9: py39
1513
3.10: py310
1614
3.11: py311
1715
3.12: py312

0 commit comments

Comments
 (0)