Skip to content

Commit

Permalink
Fix urls in instructions for installing pybind11_abseil.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 611131739
  • Loading branch information
ejania authored and copybara-github committed Feb 28, 2024
1 parent ea2282d commit 7b3209d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ http_archive(
http_archive(
name = "pybind11_abseil",
strip_prefix = "pybind11_abseil-master"
urls = ["https://github.com/pybind/pybind11_abseil/refs/heads/master.tar.gz"],
urls = ["https://github.com/pybind/pybind11_abseil/archive/refs/heads/master.tar.gz"],
)
```
Expand All @@ -85,12 +85,13 @@ http_archive(
name = "pybind11",
build_file = "@pybind11_bazel//:pybind11-BUILD.bazel",
strip_prefix = "pybind11-master",
urls = ["https://github.com/pybind/pybind11/archive/refs/heads/master.tar.gz"],
)
http_archive(
name = "pybind11_abseil",
strip_prefix = "pybind11_abseil-master",
urls = ["https://github.com/pybind/pybind11_abseil/refs/heads/master.tar.gz"],
urls = ["https://github.com/pybind/pybind11_abseil/archive/refs/heads/master.tar.gz"],
)
```

Expand Down

0 comments on commit 7b3209d

Please sign in to comment.