Skip to content

Commit

Permalink
Merge pull request #54 from ShirinovAdil/origin/py311support
Browse files Browse the repository at this point in the history
Enable python 3.11
  • Loading branch information
rhunwicks authored Aug 17, 2023
2 parents d6c0db5 + a1db690 commit cab9b3c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ def get_reqs(*fns):
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
Expand All @@ -61,5 +62,5 @@ def get_reqs(*fns):
"pip-requirements.txt",
),
tests_require=get_reqs("pip-requirements-test.txt"),
python_requires=">=3.6,<3.11",
python_requires=">=3.6,<3.12",
)
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ignore = W503, E203 # See https://github.com/PyCQA/pycodestyle/issues/373
max-line-length=160

[tox]
envlist = py{36,37}-django{22},py{36,37,38}-django{30},py{36,37,38,39,310}-django{31},py{36,37,38,39,310}-django{32},py{38,39,310}-django{40}
envlist = py{36,37}-django{22},py{36,37,38}-django{30},py{36,37,38,39,310,311}-django{31},py{36,37,38,39,310,311}-django{32},py{38,39,310,311}-django{40}
recreate = True

[gh-actions]
Expand All @@ -14,6 +14,7 @@ python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311

[testenv]
basepython =
Expand All @@ -22,6 +23,7 @@ basepython =
py38: python3.8
py39: python3.9
py310: python3.10
py311: python3.11
deps =
-r{toxinidir}/pip-requirements-test.txt
django22: Django>=2.2,<2.3
Expand Down

0 comments on commit cab9b3c

Please sign in to comment.