build: fix -e . in requirements pins

I would expect the post-pip-compile steps in `make upgrade`
to have taken care of chaninging `-e file://...`
into `-e .`, but it didn't for some reason.

Normally I would debug this, but
https://github.com/openedx/edx-platform/pull/30890
is going to merge in a week or two and it
will remove `-e .` from the requirement pins
entirely, so I'm just going to fix it manually for now.
This commit is contained in:
Kyle McCormick
2022-09-19 13:36:38 -04:00
committed by Kyle McCormick
parent 6d00e4b320
commit f42427a1f6
3 changed files with 3 additions and 3 deletions

View File

@@ -6,7 +6,7 @@
#
-e git+https://github.com/openedx/blockstore.git@1.2.1#egg=blockstore==1.2.1
# via -r requirements/edx/github.in
-e file:///home/runner/work/edx-platform/edx-platform
-e .
# via -r requirements/edx/local.in
acid-xblock==0.2.1
# via -r requirements/edx/base.in

View File

@@ -6,7 +6,7 @@
#
-e git+https://github.com/openedx/blockstore.git@1.2.1#egg=blockstore==1.2.1
# via -r requirements/edx/testing.txt
-e file:///home/runner/work/edx-platform/edx-platform
-e .
# via -r requirements/edx/testing.txt
acid-xblock==0.2.1
# via -r requirements/edx/testing.txt

View File

@@ -6,7 +6,7 @@
#
-e git+https://github.com/openedx/blockstore.git@1.2.1#egg=blockstore==1.2.1
# via -r requirements/edx/base.txt
-e file:///home/runner/work/edx-platform/edx-platform
-e .
# via -r requirements/edx/base.txt
acid-xblock==0.2.1
# via -r requirements/edx/base.txt