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

Change version suffix to 'main' and load plugins from their main branches #1154

Merged
merged 2 commits into from
Nov 27, 2024
Merged
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
28 changes: 14 additions & 14 deletions requirements/plugins.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# # For Tutor Nightly, we install plugins from their nightly branches instead of from PyPI
tutor-android@git+https://github.com/overhangio/tutor-android@nightly
tutor-cairn@git+https://github.com/overhangio/tutor-cairn@nightly
tutor-credentials@git+https://github.com/overhangio/tutor-credentials@nightly
tutor-discovery@git+https://github.com/overhangio/tutor-discovery@nightly
tutor-ecommerce@git+https://github.com/overhangio/tutor-ecommerce@nightly
tutor-forum@git+https://github.com/overhangio/tutor-forum@nightly
tutor-indigo@git+https://github.com/overhangio/tutor-indigo@nightly
tutor-jupyter@git+https://github.com/overhangio/tutor-jupyter@nightly
tutor-mfe@git+https://github.com/overhangio/tutor-mfe@nightly
tutor-minio@git+https://github.com/overhangio/tutor-minio@nightly
tutor-notes@git+https://github.com/overhangio/tutor-notes@nightly
tutor-webui@git+https://github.com/overhangio/tutor-webui@nightly
tutor-xqueue@git+https://github.com/overhangio/tutor-xqueue@nightly
# # For Tutor Main, we install plugins from their main branches instead of from PyPI
tutor-android@git+https://github.com/overhangio/tutor-android@main
tutor-cairn@git+https://github.com/overhangio/tutor-cairn@main
tutor-credentials@git+https://github.com/overhangio/tutor-credentials@main
tutor-discovery@git+https://github.com/overhangio/tutor-discovery@main
tutor-ecommerce@git+https://github.com/overhangio/tutor-ecommerce@main
tutor-forum@git+https://github.com/overhangio/tutor-forum@main
tutor-indigo@git+https://github.com/overhangio/tutor-indigo@main
tutor-jupyter@git+https://github.com/overhangio/tutor-jupyter@main
tutor-mfe@git+https://github.com/overhangio/tutor-mfe@main
tutor-minio@git+https://github.com/overhangio/tutor-minio@main
tutor-notes@git+https://github.com/overhangio/tutor-notes@main
tutor-webui@git+https://github.com/overhangio/tutor-webui@main
tutor-xqueue@git+https://github.com/overhangio/tutor-xqueue@main
2 changes: 1 addition & 1 deletion tutor/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# the main branch.
# The suffix is cleanly separated from the __version__ in this module to avoid
# conflicts when merging branches.
__version_suffix__ = "nightly"
__version_suffix__ = "main"

# The app name will be used to define the name of the default tutor root and
# plugin directory. To avoid conflicts between multiple locally-installed
Expand Down