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: upgrade to Quince #11

Merged
merged 24 commits into from
Dec 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
9f7e256
docs: change quickstart mentions to launch
Sep 20, 2022
f9b1c2a
ci: fix openedx release name
regisb Jun 13, 2022
bc38ca8
Merge remote-tracking branch 'origin/master' into nightly
Nov 10, 2022
ebbdc43
Merge remote-tracking branch 'origin/master' into nightly
Dec 12, 2022
0ab8f2e
Merge remote-tracking branch 'origin/master' into nightly
Feb 27, 2023
e1511cd
Merge remote-tracking branch 'origin/master' into nightly
May 16, 2023
cf0c8c1
Merge remote-tracking branch 'origin/master' into nightly
May 16, 2023
3d82eae
Merge remote-tracking branch 'origin/master' into nightly
May 17, 2023
927db9f
Merge remote-tracking branch 'origin/master' into nightly
May 19, 2023
7f5531b
Merge remote-tracking branch 'origin/master' into nightly
May 22, 2023
dc3dfa2
Merge remote-tracking branch 'origin/master' into nightly
May 26, 2023
2d7e1b4
Merge remote-tracking branch 'origin/master' into nightly
May 26, 2023
c126d1b
feat: label nightly version
regisb May 26, 2023
39edcf2
fix: nightly package version
regisb May 26, 2023
519104d
Merge branch 'master' into nightly
regisb Jun 15, 2023
11e99b6
Merge remote-tracking branch 'origin/master' into nightly
Jun 27, 2023
710a361
Merge remote-tracking branch 'origin/master' into nightly
Sep 7, 2023
3ad1375
Merge remote-tracking branch 'origin/master' into nightly
Oct 3, 2023
bb45d80
Merge remote-tracking branch 'origin/master' into nightly
Nov 2, 2023
04ff0e4
Merge branch 'master' into nightly
regisb Nov 20, 2023
0d2c725
Merge remote-tracking branch 'origin/master' into nightly
Dec 5, 2023
d49b41d
Merge remote-tracking branch 'origin/master' into nightly
Dec 8, 2023
f623a14
Merge remote-tracking branch 'origin/master' into nightly
Dec 8, 2023
e838365
feat: upgrade to quince
Abdul-Muqadim-Arbisoft Nov 17, 2023
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ __pycache__
*.egg-info/
/build/
/dist/
.DS_Store
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
variables:
TUTOR_PLUGIN: webui
TUTOR_PYPI_PACKAGE: tutor-webui
OPENEDX_RELEASE: palm
OPENEDX_RELEASE: quince
GITHUB_REPO: overhangio/tutor-webui

include:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ instructions, because git commits are used to generate release notes:

<!-- scriv-insert-here -->

<a id='changelog-17.0.0'></a>
## v17.0.0 (2023-12-09)

- 💥 [Feature] Upgrade to Quince (by @hinakhadim).

<a id='changelog-16.0.1'></a>
## v16.0.1 (2023-12-08)

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ def load_about():
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
python_requires=">=3.8",
install_requires=["tutor>=16.0.0,<17.0.0", "click_repl>=0.2.0"],
extras_require={"dev": "tutor[dev]>=16.0.0,<17.0.0"},
install_requires=["tutor>=17.0.0,<18.0.0", "click_repl>=0.3.0"],
extras_require={"dev": "tutor[dev]>=17.0.0,<18.0.0"},
entry_points={
"tutor.plugin.v1": ["webui = tutorwebui.plugin"],
},
Expand Down
2 changes: 1 addition & 1 deletion tutorwebui/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "16.0.1"
__version__ = "17.0.0"
5 changes: 2 additions & 3 deletions tutorwebui/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,8 @@ def shell() -> None:
Type "local launch" to configure and launch a new platform from scratch.
Type <ctrl-d> to exit."""
)
# We need to manually patch the TutorCli object because click_repl
# incorrectly calls the `commands` attribute. Note that this enables us to
# run shell within shell, which is cool but a little weird...
# Retrieve the current Click context. The context is used to manage the state
# and pass around internal objects within the Click framework.
ctx = click.get_current_context()
if ctx.parent and ctx.parent.command:
ctx.parent.command.commands = {} # type: ignore
Expand Down
Loading