Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for python 3.12 #439

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04]
python-version: ['3.8', '3.11']
python-version: ['3.8', '3.11', '3.12']
toxenv: [quality, docs, django42-drflatest]

steps:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Expand Up @@ -12,6 +12,11 @@ Change Log
Unreleased
----------

[10.3.1]
--------------------

* Add support for python 3.12

[10.3.0] - 2024-03-29
---------------------

Expand Down
2 changes: 1 addition & 1 deletion edx_rest_framework_extensions/__init__.py
@@ -1,3 +1,3 @@
""" edx Django REST Framework extensions. """

__version__ = '10.3.0' # pragma: no cover
__version__ = '10.3.1' # pragma: no cover
6 changes: 3 additions & 3 deletions requirements/base.txt
Expand Up @@ -44,7 +44,7 @@ djangorestframework==3.15.1
# drf-jwt
drf-jwt==1.19.2
# via -r requirements/base.in
edx-django-utils==5.11.0
edx-django-utils==5.12.0
# via -r requirements/base.in
edx-opaque-keys==2.5.1
# via -r requirements/base.in
Expand All @@ -56,7 +56,7 @@ pbr==6.0.0
# via stevedore
psutil==5.9.8
# via edx-django-utils
pycparser==2.21
pycparser==2.22
# via cffi
pyjwt[crypto]==2.8.0
# via
Expand All @@ -76,7 +76,7 @@ stevedore==5.2.0
# via
# edx-django-utils
# edx-opaque-keys
typing-extensions==4.10.0
typing-extensions==4.11.0
# via
# asgiref
# edx-opaque-keys
Expand Down
10 changes: 5 additions & 5 deletions requirements/dev.txt
Expand Up @@ -76,7 +76,7 @@ click-log==0.4.0
# via
# -r requirements/test.txt
# edx-lint
code-annotations==1.7.0
code-annotations==1.8.0
# via
# -r requirements/test.txt
# edx-lint
Expand Down Expand Up @@ -137,7 +137,7 @@ drf-jwt==1.19.2
# via
# -r requirements/base.txt
# -r requirements/test.txt
edx-django-utils==5.11.0
edx-django-utils==5.12.0
# via
# -r requirements/base.txt
# -r requirements/test.txt
Expand All @@ -153,7 +153,7 @@ exceptiongroup==1.2.0
# pytest
factory-boy==2.12.0
# via -r requirements/test.txt
faker==24.4.0
faker==24.7.1
# via
# -r requirements/test.txt
# factory-boy
Expand Down Expand Up @@ -239,7 +239,7 @@ psutil==5.9.8
# edx-django-utils
pycodestyle==2.11.1
# via -r requirements/test.txt
pycparser==2.21
pycparser==2.22
# via
# -r requirements/base.txt
# -r requirements/test.txt
Expand Down Expand Up @@ -403,7 +403,7 @@ tomlkit==0.12.4
# pylint
tox==4.14.2
# via -r requirements/test.txt
typing-extensions==4.10.0
typing-extensions==4.11.0
# via
# -r requirements/base.txt
# -r requirements/docs.txt
Expand Down
2 changes: 1 addition & 1 deletion requirements/docs.txt
Expand Up @@ -86,7 +86,7 @@ sphinxcontrib-qthelp==1.0.3
# via sphinx
sphinxcontrib-serializinghtml==1.1.5
# via sphinx
typing-extensions==4.10.0
typing-extensions==4.11.0
# via
# -c requirements/test.txt
# pydata-sphinx-theme
Expand Down
10 changes: 5 additions & 5 deletions requirements/test.txt
Expand Up @@ -44,7 +44,7 @@ click==8.1.7
# edx-lint
click-log==0.4.0
# via edx-lint
code-annotations==1.7.0
code-annotations==1.8.0
# via edx-lint
colorama==0.4.6
# via tox
Expand Down Expand Up @@ -83,7 +83,7 @@ django-waffle==4.1.0
# drf-jwt
drf-jwt==1.19.2
# via -r requirements/base.txt
edx-django-utils==5.11.0
edx-django-utils==5.12.0
# via -r requirements/base.txt
edx-lint==5.3.6
# via -r requirements/test.in
Expand All @@ -93,7 +93,7 @@ exceptiongroup==1.2.0
# via pytest
factory-boy==2.12.0
# via -r requirements/test.in
faker==24.4.0
faker==24.7.1
# via factory-boy
filelock==3.13.3
# via
Expand Down Expand Up @@ -145,7 +145,7 @@ psutil==5.9.8
# edx-django-utils
pycodestyle==2.11.1
# via -r requirements/test.in
pycparser==2.21
pycparser==2.22
# via
# -r requirements/base.txt
# cffi
Expand Down Expand Up @@ -222,7 +222,7 @@ tomlkit==0.12.4
# via pylint
tox==4.14.2
# via -r requirements/test.in
typing-extensions==4.10.0
typing-extensions==4.11.0
# via
# -r requirements/base.txt
# asgiref
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -110,6 +110,7 @@ def get_version(*file_paths):
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Framework :: Django',
'Framework :: Django :: 4.2',
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py{38, 311}-django{42}-drf{latest}, quality, docs
envlist = py{38, 311, 312}-django{42}-drf{latest}, quality, docs

[testenv]
setenv =
Expand Down