Skip to content

Commit f0e9555

Browse files
authored
Update Python & Django version support (#218)
* Add Django 4.2 support * Drop Django 4.0 support * Add Python 3.11 support
1 parent c309742 commit f0e9555

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,11 @@ jobs:
6969
- "3.8"
7070
- "3.9"
7171
- "3.10"
72+
- "3.11"
7273
django-version:
7374
- "3.2"
74-
- "4.0"
7575
- "4.1"
76+
- "4.2"
7677
runs-on: ubuntu-latest
7778
steps:
7879
- uses: actions/checkout@v3

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,14 @@ classifiers = [
2020
"Programming Language :: Python",
2121
"Programming Language :: Python :: 3",
2222
"Programming Language :: Python :: 3 :: Only",
23-
"Programming Language :: Python :: 3.9",
23+
"Programming Language :: Python :: 3.8",
2424
"Programming Language :: Python :: 3.9",
2525
"Programming Language :: Python :: 3.10",
26+
"Programming Language :: Python :: 3.11",
2627
"Framework :: Django",
2728
"Framework :: Django :: 3.2",
28-
"Framework :: Django :: 4.0",
2929
"Framework :: Django :: 4.1",
30+
"Framework :: Django :: 4.2",
3031
"Topic :: Software Development",
3132
]
3233
requires-python = ">=3.8"
@@ -67,6 +68,7 @@ minversion = "6.0"
6768
addopts = "--cov --tb=short -rxs"
6869
testpaths = ["tests"]
6970
DJANGO_SETTINGS_MODULE = "tests.testapp.settings"
71+
filterwarnings = ["ignore::PendingDeprecationWarning", "error::RuntimeWarning"]
7072

7173
[tool.coverage.run]
7274
source = ["django_select2"]

0 commit comments

Comments
 (0)