Skip to content

Commit 4507dcf

Browse files
committed
django < 4.2, py 3.[8-11], version 0.14.3
1 parent 05d25fc commit 4507dcf

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
max-parallel: 4
1111
matrix:
12-
python-version: [3.8, 3.9, "3.10"]
12+
python-version: [3.8, 3.9, "3.10", "3.11"]
1313
django-version: [4.0, 4.1]
1414

1515
steps:

setup.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
# We are intending to keep up to date with the supported Django versions.
1111
# For the official support, please visit:
1212
# https://docs.djangoproject.com/en/4.0/faq/install/#what-python-version-can-i-use-with-django
13-
if sys.version_info[1] in [8, 9, 10]:
14-
django_python_version_install = "Django>=4.0,<4.1"
13+
if sys.version_info[1] in [8, 9, 10, 11]:
14+
django_python_version_install = "Django>=4.0,<4.2"
1515
INSTALL_PYTHON_REQUIRES.append(django_python_version_install)
1616

1717
setup(
1818

1919
# Basic package information:
2020
name='django-twilio',
21-
version='0.14.2',
21+
version='0.14.3',
2222
packages=find_packages(),
2323

2424
# Packaging options:
@@ -63,6 +63,7 @@
6363
'Programming Language :: Python :: 3.8',
6464
'Programming Language :: Python :: 3.9',
6565
'Programming Language :: Python :: 3.10',
66+
'Programming Language :: Python :: 3.11',
6667
'Programming Language :: Python :: Implementation :: CPython',
6768
'Programming Language :: Python :: Implementation :: PyPy',
6869
'Topic :: Internet :: WWW/HTTP',

tox.ini

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[tox]
2-
envlist = py38,py39,py310
2+
envlist = py38,py39,py310,py311
3+
skip_missing_interpreters = true
34
[testenv]
45
deps =
56
-rrequirements.txt

0 commit comments

Comments
 (0)