From 39ba05a5302288efc00261cf45f4970cce7c21a2 Mon Sep 17 00:00:00 2001 From: Eric Cousineau Date: Fri, 25 Jun 2021 12:43:38 -0400 Subject: [PATCH] CONTRIBUTING: Ensure `pip` gets upgraded; install `wheel` Homogenize how to activate venv (use `source` instead of `.`) --- .github/CONTRIBUTING.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 6f9ebf21f..971f872ab 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -59,6 +59,7 @@ system with CMake 3.14+: ```bash python3 -m venv venv source venv/bin/activate +pip install -U pip wheel pip install -r tests/requirements.txt cmake -S . -B build -DDOWNLOAD_CATCH=ON -DDOWNLOAD_EIGEN=ON cmake --build build -j4 @@ -233,7 +234,8 @@ recent CMake and Python 3): ```bash python3 -m venv venv -. venv/bin/activate +source venv/bin/activate +pip install -U pip wheel pip install pytest cmake -S . -B build-intel -DCMAKE_CXX_COMPILER=$(which icpc) -DDOWNLOAD_CATCH=ON -DDOWNLOAD_EIGEN=ON -DPYBIND11_WERROR=ON ```