summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMelissa Weber Mendonça <melissawm@gmail.com>2022-01-19 15:28:30 -0300
committerGitHub <noreply@github.com>2022-01-19 15:28:30 -0300
commitc852e1397bf3c0b24faaa3c66cc50b1f2eba1ebd (patch)
tree2c03fab610bc9b97b4f60ba2b8915e63ec65a3ef
parent700a48ccf10f2511af5b88c2fb6985b44e7467ef (diff)
parent7b3e5fbc75082bc501b0106f91eb51d98cd45a5b (diff)
downloadnumpy-c852e1397bf3c0b24faaa3c66cc50b1f2eba1ebd.tar.gz
Merge pull request #20857 from trallard/trallard/gitpod-patch
-rw-r--r--.gitpod.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.gitpod.yml b/.gitpod.yml
index f9c35fd9b..9c3888de5 100644
--- a/.gitpod.yml
+++ b/.gitpod.yml
@@ -6,18 +6,19 @@
image: numpy/numpy-gitpod:latest
tasks:
- - name: Prepare development
+ - name: Prepare development environment
init: |
mkdir -p .vscode
cp tools/gitpod/settings.json .vscode/settings.json
conda activate numpy-dev
+ git pull --unshallow # need to force this else the prebuild fails
+ git fetch --tags
python setup.py build_ext --inplace
echo "🛠 Completed rebuilding NumPy!! 🛠 "
echo "📖 Building docs 📖 "
cd doc
make html
echo "✨ Pre-build complete! You can close this terminal ✨ "
-
# --------------------------------------------------------
# exposing ports for liveserve
@@ -60,3 +61,4 @@ github:
addBadge: false
# add a label once the prebuild is ready to pull requests (defaults to false)
addLabel: false
+ \ No newline at end of file