diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e22cca2..367e605 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,9 @@ jobs: shell: bash -el {0} steps: - uses: actions/checkout@v3 - + - name: Try pip + if: always() + run: pip install setuptools # - name: Set up Python # if: matrix.version != 3.13 # uses: actions/setup-python@v4 @@ -26,11 +28,16 @@ jobs: # allow-prereleases: true - name: Setup Python via Miniconda + if: always() uses: conda-incubator/setup-miniconda@v3.0.4 with: python-version: "${{ matrix.version }}" #channels: defaults,ad-testing/label/py313_nogil + - name: Try pip again + if: always() + run: pip install setuptools + - name: Install build essentials run: | conda install gcc -c conda-forge -y