File tree 3 files changed +7
-5
lines changed
3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 9
9
strategy :
10
10
max-parallel : 4
11
11
matrix :
12
- python-version : [3.8, 3.9, "3.10"]
12
+ python-version : [3.8, 3.9, "3.10", "3.11" ]
13
13
django-version : [4.0, 4.1]
14
14
15
15
steps :
Original file line number Diff line number Diff line change 10
10
# We are intending to keep up to date with the supported Django versions.
11
11
# For the official support, please visit:
12
12
# 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 "
15
15
INSTALL_PYTHON_REQUIRES .append (django_python_version_install )
16
16
17
17
setup (
18
18
19
19
# Basic package information:
20
20
name = 'django-twilio' ,
21
- version = '0.14.2 ' ,
21
+ version = '0.14.3 ' ,
22
22
packages = find_packages (),
23
23
24
24
# Packaging options:
63
63
'Programming Language :: Python :: 3.8' ,
64
64
'Programming Language :: Python :: 3.9' ,
65
65
'Programming Language :: Python :: 3.10' ,
66
+ 'Programming Language :: Python :: 3.11' ,
66
67
'Programming Language :: Python :: Implementation :: CPython' ,
67
68
'Programming Language :: Python :: Implementation :: PyPy' ,
68
69
'Topic :: Internet :: WWW/HTTP' ,
Original file line number Diff line number Diff line change 1
1
[tox]
2
- envlist = py38,py39,py310
2
+ envlist = py38,py39,py310,py311
3
+ skip_missing_interpreters = true
3
4
[testenv]
4
5
deps =
5
6
-rrequirements.txt
You can’t perform that action at this time.
0 commit comments