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

feat: add 3.12 support #26

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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.11']
python-version: ['3.8', '3.11', '3.12']
steps:
- uses: actions/checkout@v2
- name: setup python
Expand Down
4 changes: 2 additions & 2 deletions requirements/pip.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
# This file is autogenerated by pip-compile with python 3.8
# To update, run:
# This file is autogenerated by pip-compile with Python 3.8
# by the following command:
#
# make upgrade
#
Expand Down
4 changes: 2 additions & 2 deletions requirements/pip_tools.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
# This file is autogenerated by pip-compile with python 3.8
# To update, run:
# This file is autogenerated by pip-compile with Python 3.8
# by the following command:
#
# make upgrade
#
Expand Down
18 changes: 16 additions & 2 deletions requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,24 @@
#
# make upgrade
#
backports-tarfile==1.0.0
# via jaraco-context
bump2version==1.0.1
# via bumpversion
bumpversion==0.6.0
# via -r requirements/test.in
certifi==2024.2.2
# via requests
cffi==1.16.0
# via cryptography
charset-normalizer==3.3.2
# via requests
click==8.1.7
# via -r requirements/base.txt
coverage==7.4.4
# via -r requirements/test.in
cryptography==42.0.5
# via secretstorage
docutils==0.20.1
# via readme-renderer
exceptiongroup==1.2.0
Expand All @@ -35,10 +41,14 @@ iniconfig==2.0.0
# via pytest
jaraco-classes==3.4.0
# via keyring
jaraco-context==5.1.0
jaraco-context==5.3.0
# via keyring
jaraco-functools==4.0.0
# via keyring
jeepney==0.8.0
# via
# keyring
# secretstorage
keyring==25.1.0
# via twine
markdown-it-py==3.0.0
Expand All @@ -61,6 +71,8 @@ pluggy==1.4.0
# via pytest
pycodestyle==2.11.1
# via flake8
pycparser==2.22
# via cffi
pyflakes==3.2.0
# via flake8
pygments==2.17.2
Expand All @@ -83,11 +95,13 @@ rfc3986==2.0.0
# via twine
rich==13.7.1
# via twine
secretstorage==3.3.3
# via keyring
tomli==2.0.1
# via pytest
twine==5.0.0
# via -r requirements/test.in
typing-extensions==4.10.0
typing-extensions==4.11.0
# via rich
urllib3==2.2.1
# via
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,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',
],
description="User utilities for the Open edX platform",
entry_points={
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{38, 311}-django{42},quality
envlist = py{38, 311, 312}-django{42},quality

[ci]
python =
Expand All @@ -15,6 +15,7 @@ commands = flake8 user_util
setenv =
PYTHONPATH = {toxinidir}
deps =
setuptools
-r requirements/test.txt
commands =
pip install -U pip
Expand Down