diff options
-rw-r--r-- | .gitpod.yml | 3 | ||||
-rw-r--r-- | tools/gitpod/gitpod.Dockerfile | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.gitpod.yml b/.gitpod.yml index dfbee831a..f9c35fd9b 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -14,7 +14,6 @@ tasks: python setup.py build_ext --inplace echo "🛠Completed rebuilding NumPy!! 🛠" echo "📖 Building docs 📖 " - git submodule update --init cd doc make html echo "✨ Pre-build complete! You can close this terminal ✨ " @@ -60,4 +59,4 @@ github: # add a "Review in Gitpod" button to the pull request's description (defaults to false) addBadge: false # add a label once the prebuild is ready to pull requests (defaults to false) - addLabel: false
\ No newline at end of file + addLabel: false diff --git a/tools/gitpod/gitpod.Dockerfile b/tools/gitpod/gitpod.Dockerfile index 538963bc0..40bdd20d9 100644 --- a/tools/gitpod/gitpod.Dockerfile +++ b/tools/gitpod/gitpod.Dockerfile @@ -8,6 +8,7 @@ COPY --chown=gitpod . /tmp/numpy_repo # the clone should be deep enough for versioneer to work RUN git clone --shallow-since=2021-05-22 file:////tmp/numpy_repo /tmp/numpy +RUN git submodule update --init # ----------------------------------------------------------------------------- # Using the numpy-dev Docker image as a base |