Skip to content

Commit

Permalink
fix mentions of requirements-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Wumpf committed Apr 11, 2024
1 parent 37c9f73 commit 3c9a08b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 3 additions & 1 deletion crates/re_build_search_index/src/ingest/python.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ pub fn ingest(ctx: &Context) -> anyhow::Result<()> {
.with_arg("rerun_py/site/objects.inv")
.with_arg("-")
.parse_json::<SphinxObjectInv>()
.context("sphobjinv may not be installed, install rerun_py/requirements-doc.txt")?
.context(
"sphobjinv may not be installed, are you running in the py-docs pixi environment?",
)?
.objects
.into_values()
.map(|o| (o.name.clone(), o))
Expand Down
1 change: 0 additions & 1 deletion scripts/ci/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@

-r ../../rerun_py/requirements-build.txt
-r ../../rerun_py/requirements-doc.txt
-r ../../rerun_py/requirements-lint.txt
-r ./requirements-crates.txt

Expand Down
1 change: 0 additions & 1 deletion scripts/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Pip packages all developers need

-r ../rerun_py/requirements-build.txt
-r ../rerun_py/requirements-doc.txt
-r ../rerun_py/requirements-lint.txt

cryptography==38.0.4 # for scripts/upload_image.py
Expand Down

0 comments on commit 3c9a08b

Please sign in to comment.