Skip to content

Commit

Permalink
feat: Adding python 3.11 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
awais786 committed Apr 5, 2024
1 parent fd07432 commit 0ec5e82
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 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']
steps:
- uses: actions/checkout@v2
- name: setup python
Expand Down
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
History
=======

1.1.0 (2024-04-05)
------------------

* Adding python3.11 support.


0.3.1 (2020-09-16)
------------------

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ def get_version(*file_paths):
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.11',
],
description="User utilities for the Open edX platform",
entry_points={
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{38, 312}-django{42},quality
envlist = py{38, 311}-django{42},quality

[ci]
python =
Expand Down
2 changes: 1 addition & 1 deletion user_util/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Top-level package for Open edX User Utilities."""

__version__ = '1.0.0'
__version__ = '1.1.0'

0 comments on commit 0ec5e82

Please sign in to comment.