From 1771d3e5a2e79b6fd27b5cfc22307a2f39421a32 Mon Sep 17 00:00:00 2001 From: Jordan Matelsky Date: Wed, 17 Apr 2024 10:39:17 -0400 Subject: [PATCH] Fix dep installation --- .github/workflows/codspeed.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codspeed.yml b/.github/workflows/codspeed.yml index 796f137..aa622b8 100644 --- a/.github/workflows/codspeed.yml +++ b/.github/workflows/codspeed.yml @@ -19,7 +19,12 @@ jobs: python-version: "3.11" - name: Install dependencies - run: pip install -r requirements.txt && pip install pytest pytest-codspeed + run: | + python -m pip install --upgrade pip + pip install flake8 pytest pytest-cov pytest-codspeed + # Install "cmake", "cython" for networkit. Must happen first: + pip install --upgrade cmake cython + pip install -e ".[sql,networkit,igraph]" - name: Run benchmarks uses: CodSpeedHQ/action@v2