Commit 2c49cb53 by Ralf W. Grosse-Kunstleve Committed by Copybara-Service

cmake: Use requirements_lock_3_#.txt file (instead of requirements.in).

Fixes `build_and_test / ubuntu-latest cmake` failure as reported here:

* https://github.com/pybind/pybind11_abseil/pull/25#issuecomment-2173642297

PiperOrigin-RevId: 644276088
parent 91bf7c35
......@@ -71,7 +71,7 @@ function cleanup {
trap cleanup EXIT
echo -e "\e[33mInstalling the requirements (use --noinstall to skip).\e[0m"
pip3 install --upgrade -r ./pybind11_abseil/requirements/requirements.in
pip3 install --upgrade -r $(python3 -c 'import sys; print("./pybind11_abseil/requirements/requirements_lock_%d_%d.txt" % (sys.version_info[:2]))')
echo "Building and testing in $PWD using 'python' (version $PYVERSION)."
......
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