-
Notifications
You must be signed in to change notification settings - Fork 0
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: add init task to pip-install mounted edx-platform #25
Conversation
This removes an openedx/edx-platform commit backported as a patch to tutor to olive.1 release Since the commit is already merged into edx-platform:master branch used by tutor nightly, there is no further need for it.
c30b728
to
8b39340
Compare
8b39340
to
b903c69
Compare
d68edcf
to
a143aa7
Compare
ENTRY_POINTS_INFO=Open_edX.egg-info/entry_points.txt | ||
if [ ! -f "$ENTRY_POINTS_INFO" ] || [ "$ENTRY_POINTS_INFO" -ot setup.py ]; then | ||
pip install -e . | ||
fi |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note:
I took this block directly from the other PR: #24
In the context of do init
, here's no harm in re-running pip install -e .
, other than the ~2 seconds it take to run, so we could simplify this block to just:
ENTRY_POINTS_INFO=Open_edX.egg-info/entry_points.txt | |
if [ ! -f "$ENTRY_POINTS_INFO" ] || [ "$ENTRY_POINTS_INFO" -ot setup.py ]; then | |
pip install -e . | |
fi | |
pip install -e . |
a143aa7
to
b1974a3
Compare
Adds `from __future__ import annotations` to the top of every module, right below the module's docstring. Replaces any usages of t.List, t.Dict, t.Set, t.Tuple, and t.Type with their built-in equivalents: list, dict, set, tuple, and type. Ensures that make test still passes under Python 3.7, 3.8 and 3.9.
* Remove redundant changelog line * The change should NOT affect most developers ;)
b1974a3
to
dcec026
Compare
Closed in favor of overhangio#813, which includes the code from this PR, and then some. |
Implements "Option B" from openedx-unsupported/wg-developer-experience#152, specifically:
You can compare this with Option A here: #24