We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c309742 commit f0e9555Copy full SHA for f0e9555
.github/workflows/ci.yml
@@ -69,10 +69,11 @@ jobs:
69
- "3.8"
70
- "3.9"
71
- "3.10"
72
+ - "3.11"
73
django-version:
74
- "3.2"
- - "4.0"
75
- "4.1"
76
+ - "4.2"
77
runs-on: ubuntu-latest
78
steps:
79
- uses: actions/checkout@v3
pyproject.toml
@@ -20,13 +20,14 @@ classifiers = [
20
"Programming Language :: Python",
21
"Programming Language :: Python :: 3",
22
"Programming Language :: Python :: 3 :: Only",
23
- "Programming Language :: Python :: 3.9",
+ "Programming Language :: Python :: 3.8",
24
"Programming Language :: Python :: 3.9",
25
"Programming Language :: Python :: 3.10",
26
+ "Programming Language :: Python :: 3.11",
27
"Framework :: Django",
28
"Framework :: Django :: 3.2",
- "Framework :: Django :: 4.0",
29
"Framework :: Django :: 4.1",
30
+ "Framework :: Django :: 4.2",
31
"Topic :: Software Development",
32
]
33
requires-python = ">=3.8"
@@ -67,6 +68,7 @@ minversion = "6.0"
67
68
addopts = "--cov --tb=short -rxs"
testpaths = ["tests"]
DJANGO_SETTINGS_MODULE = "tests.testapp.settings"
+filterwarnings = ["ignore::PendingDeprecationWarning", "error::RuntimeWarning"]
[tool.coverage.run]
source = ["django_select2"]
0 commit comments