From c25e5e0e4c956df328fff9cbe6f1570f1a514d0d Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Wed, 8 May 2024 11:22:12 -0700 Subject: [PATCH] Use pypi for tests --- .github/workflows/test.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2dfae65..2e9879f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,19 +19,16 @@ jobs: python-version: ["3.10", "3.11", "3.12"] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - - name: Conda - uses: conda-incubator/setup-miniconda@v2 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v5 with: - auto-update-conda: true python-version: ${{ matrix.python-version }} - channels: conda-forge - activate-environment: testing - name: Install dependencies run: | - conda install -c conda-forge joblib scipy pandas pytest-cov pytest-randomly + python -m pip install scipy pandas pytest-cov pytest-randomly # matplotlib lxml pygraphviz pydot sympy # Extra networkx deps we don't need yet python -m pip install git+https://github.com/networkx/networkx.git@main python -m pip install .