Skip to content

Commit

Permalink
feat: Adding python3.11 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
awais786 committed Apr 9, 2024
1 parent f753dff commit dea5ed9
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
matrix:
os:
- ubuntu-20.04
python-version: [3.8, '3.8', '3.12']
python-version: ['3.8', '3.11']
toxenv: [django42]

steps:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
django-require changelog
========================

2.2.0 - 09/04/2024
-------------------

* Support added for python3.11. Dropped support for django32.
*
2.1.0 - 20/07/2023
-------------------

Expand Down
2 changes: 1 addition & 1 deletion require/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
"""


__version__ = (2, 1, 0)
__version__ = (2, 2, 0)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.11",
"Topic :: Internet :: WWW/HTTP",
],
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{38, 312}-django{42}
py{38, 311}-django{42}

[testenv]
changedir = {envtmpdir}
Expand Down

0 comments on commit dea5ed9

Please sign in to comment.