Skip to content
Open
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/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.12']
python-version: ['3.10', '3.14']
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- 💥[Improvement] Add Python 3.13 and 3.14 support. Drop Python 3.9 (end-of-life). Update CI matrix from Python 3.9/3.12 to 3.10/3.14. (by @Syed-Ali-Abbas-568)
1 change: 1 addition & 0 deletions changelog.d/20260417_verawood_upgrade.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- 💥[Feature] Upgrade to Verawood. (generated by Claude Code on behalf of @ahmed-arb)
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,28 +14,29 @@ maintainers = [
]
license = {text = "AGPL-3.0-only"}
readme = {file = "README.rst", content-type = "text/x-rst"}
requires-python = ">=3.9"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"tutor>=21.0.0,<22.0.0",
"tutor>=22.0.0,<23.0.0",
]

# These fields will be set by hatch_build.py
dynamic = ["version"]

[project.optional-dependencies]
dev = [
"tutor[dev]>=21.0.0,<22.0.0",
"tutor[dev]>=22.0.0,<23.0.0",
"ruff"
]

Expand Down
2 changes: 1 addition & 1 deletion tutorxqueue/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "21.0.0"
__version__ = "22.0.0"
2 changes: 1 addition & 1 deletion tutorxqueue/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"MYSQL_USERNAME": "xqueue",
"REPOSITORY": "https://github.com/openedx/xqueue",
# TODO: revert REPOSITORY_VERSION to "{{ OPENEDX_COMMON_VERSION }}"
# once openedx/xqueue has released an ulmo branch
# once openedx/xqueue has released an verawood branch
"REPOSITORY_VERSION": "master",
},
"unique": {
Expand Down
Loading