Skip to content

Commit

Permalink
chore: Support Tutor 16 and Open edX Palm release
Browse files Browse the repository at this point in the history
Add suport for Tutor 16, Open edX Palm, Python versions 3.10 and 3.11.
  • Loading branch information
Maari Tamm committed Aug 18, 2023
1 parent 87fc393 commit 7c3e0c9
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
python-version:
- 3.8
- 3.9
- "3.10"
- 3.11

steps:
- name: Check out code
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Unreleased
-----------------------------
* Add support for Tutor 16, Open edX Palm,
Python versions 3.10 and 3.11.

Version 1.0.0 (2023-07-21)
-----------------------------

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ appropriate one:
| Open edX release | Tutor version | Plugin branch | Plugin release |
|------------------|-------------------|---------------|----------------|
| Olive | `>=15.0, <16` | `main` | 1.x.x |
| Palm | `>=16.0, <17` | `main` | 1.x.x |


Installation
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def load_readme():
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
python_requires=">=3.7",
install_requires=["tutor <16"],
install_requires=["tutor <17"],
setup_requires=['setuptools-scm<7'],
entry_points={
"tutor.plugin.v1": [
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ envlist = gitlint,py{38,39},flake8
python =
3.8: gitlint,py38,flake8
3.9: gitlint,py39,flake8
3.10: gitlint,py310,flake8
3.11: gitlint,py311,flake8

[flake8]
ignore = E124,W504
Expand Down

0 comments on commit 7c3e0c9

Please sign in to comment.