Skip to content

Commit

Permalink
oops, python-graphblas didn't build for Python 3.12 on conda-forge
Browse files Browse the repository at this point in the history
  • Loading branch information
eriknw committed Oct 18, 2023
1 parent 5ac6d2f commit 11d1697
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,12 @@ jobs:
auto-activate-base: false
- name: Install dependencies
run: |
$(command -v mamba || command -v conda) install python-graphblas scipy pandas pytest-cov pytest-randomly pytest-mpl
$(command -v mamba || command -v conda) install python-suitesparse-graphblas scipy pandas pytest-cov pytest-randomly pytest-mpl \
${{ matrix.python-version != '3.12' && 'python-graphblas' || '' }}
if [[ ${{ matrix.python-version }} == "3.12" ]]; then
# TODO: install via conda once there are builds for 3.12
pip install --no-deps python-graphblas
fi
# matplotlib lxml pygraphviz pydot sympy # Extra networkx deps we don't need yet
pip install git+https://github.com/networkx/networkx.git@main --no-deps
pip install -e . --no-deps
Expand Down

0 comments on commit 11d1697

Please sign in to comment.