We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 882b9ad commit 5e795cdCopy full SHA for 5e795cd
justfile
@@ -27,8 +27,7 @@ py-dev-env:
27
set -euxo pipefail
28
python3 -m venv venv
29
venv/bin/pip install --upgrade pip
30
- venv/bin/pip install -r rerun_py/requirements-build.txt
31
- venv/bin/pip install -r rerun_py/requirements-lint.txt
+ venv/bin/pip install -r scripts/requirements-dev.txt
32
echo "Do 'source venv/bin/activate' to use the virtual environment!"
33
34
# Run all examples with the specified args
scripts/requirements-dev.txt
@@ -0,0 +1,7 @@
1
+# Pip packages all developers need
2
+
3
+-r ../rerun_py/requirements-build.txt
4
+-r ../rerun_py/requirements-doc.txt
5
+-r ../rerun_py/requirements-lint.txt
6
7
+google-cloud-storage==2.9.0 # for scripts/upload_image.py
0 commit comments