Commit 7b3209d4 by Olga Silina Committed by Copybara-Service

Fix urls in instructions for installing pybind11_abseil.

PiperOrigin-RevId: 611131739
parent ea2282d1
...@@ -61,7 +61,7 @@ http_archive( ...@@ -61,7 +61,7 @@ http_archive(
http_archive( http_archive(
name = "pybind11_abseil", name = "pybind11_abseil",
strip_prefix = "pybind11_abseil-master" 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"],
) )
``` ```
...@@ -85,12 +85,13 @@ http_archive( ...@@ -85,12 +85,13 @@ http_archive(
name = "pybind11", name = "pybind11",
build_file = "@pybind11_bazel//:pybind11-BUILD.bazel", build_file = "@pybind11_bazel//:pybind11-BUILD.bazel",
strip_prefix = "pybind11-master", strip_prefix = "pybind11-master",
urls = ["https://github.com/pybind/pybind11/archive/refs/heads/master.tar.gz"],
) )
http_archive( http_archive(
name = "pybind11_abseil", name = "pybind11_abseil",
strip_prefix = "pybind11_abseil-master", 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"],
) )
``` ```
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment