diff options
| author | Melissa Weber Mendonça <melissawm@gmail.com> | 2022-01-19 15:28:30 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-19 15:28:30 -0300 |
| commit | c852e1397bf3c0b24faaa3c66cc50b1f2eba1ebd (patch) | |
| tree | 2c03fab610bc9b97b4f60ba2b8915e63ec65a3ef | |
| parent | 700a48ccf10f2511af5b88c2fb6985b44e7467ef (diff) | |
| parent | 7b3e5fbc75082bc501b0106f91eb51d98cd45a5b (diff) | |
| download | numpy-c852e1397bf3c0b24faaa3c66cc50b1f2eba1ebd.tar.gz | |
Merge pull request #20857 from trallard/trallard/gitpod-patch
| -rw-r--r-- | .gitpod.yml | 6 |
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 |
