From 4507dcfc9339d14641e0b569da31b33e7ab6c2b9 Mon Sep 17 00:00:00 2001 From: Jason Held Date: Tue, 25 Oct 2022 15:13:04 -0400 Subject: [PATCH] django < 4.2, py 3.[8-11], version 0.14.3 --- .github/workflows/build.yml | 2 +- setup.py | 7 ++++--- tox.ini | 3 ++- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5658215..9436faa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [3.8, 3.9, "3.10"] + python-version: [3.8, 3.9, "3.10", "3.11"] django-version: [4.0, 4.1] steps: diff --git a/setup.py b/setup.py index 45aa5e7..53a4226 100644 --- a/setup.py +++ b/setup.py @@ -10,15 +10,15 @@ # We are intending to keep up to date with the supported Django versions. # For the official support, please visit: # https://docs.djangoproject.com/en/4.0/faq/install/#what-python-version-can-i-use-with-django -if sys.version_info[1] in [8, 9, 10]: - django_python_version_install = "Django>=4.0,<4.1" +if sys.version_info[1] in [8, 9, 10, 11]: + django_python_version_install = "Django>=4.0,<4.2" INSTALL_PYTHON_REQUIRES.append(django_python_version_install) setup( # Basic package information: name='django-twilio', - version='0.14.2', + version='0.14.3', packages=find_packages(), # Packaging options: @@ -63,6 +63,7 @@ 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Internet :: WWW/HTTP', diff --git a/tox.ini b/tox.ini index c957f60..d2f171b 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,6 @@ [tox] -envlist = py38,py39,py310 +envlist = py38,py39,py310,py311 +skip_missing_interpreters = true [testenv] deps = -rrequirements.txt