-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
👷(edx-platform) fix build following missing Python package
The moto Python package is missing but it is only used in tests which we are no intent to run on this image. Let's remove it.
- Loading branch information
1 parent
b43a0de
commit 4a1bad2
Showing
3 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
releases/dogwood/3/fun/patches/edx-platform_dogwood.3-fun_moto.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
diff --git a/requirements/edx/base.txt b/requirements/edx/base.txt | ||
index 19c655d79e..457d719e30 100644 | ||
--- a/requirements/edx/base.txt | ||
+++ b/requirements/edx/base.txt | ||
@@ -140,7 +140,7 @@ flaky==2.4.0 | ||
freezegun==0.1.11 | ||
mock-django==0.6.9 | ||
mock==1.0.1 | ||
-moto==0.3.1 | ||
+#moto==0.3.1 version not available anymore but we don't need to run the tests anyway | ||
nose==1.3.7 | ||
nose-exclude | ||
nose-ignore-docstring | ||
|