Skip to content

Commit

Permalink
django < 4.2, py 3.[8-11], version 0.14.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jheld committed Oct 25, 2022
1 parent 05d25fc commit 4507dcf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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',
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[tox]
envlist = py38,py39,py310
envlist = py38,py39,py310,py311
skip_missing_interpreters = true
[testenv]
deps =
-rrequirements.txt
Expand Down

0 comments on commit 4507dcf

Please sign in to comment.