Skip to content

Commit

Permalink
chore: Adds support for python 3.11 and 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
farhan committed Feb 19, 2024
1 parent 6b712bd commit 630123e
Show file tree
Hide file tree
Showing 4 changed files with 8 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 @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04]
python-version: ['3.8']
python-version: ['3.8', '3.11', '3.12']
toxenv: [django32, django42]
steps:
- uses: actions/checkout@v2
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ Change history for XBlock SDK

These are notable changes in XBlock.

0.8.0
-----
* Added support for python 3.11 and 3.12


0.7.0
-----
* Added support for Django 4.2
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 = py38-django{32,42},quality
envlist = py{38,311,312}-django{32,42},quality

[pycodestyle]
exclude = .git,.tox,migrations
Expand Down
2 changes: 1 addition & 1 deletion workbench/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Provide a djangoapp for XBlock development
"""

__version__ = '0.7.1'
__version__ = '0.8.0'

0 comments on commit 630123e

Please sign in to comment.