From bb228fc452ecf924fb6f0694c3afaae3478822e2 Mon Sep 17 00:00:00 2001 From: grantbuster Date: Mon, 8 Jul 2024 13:45:24 -0600 Subject: [PATCH] debug poppler install --- .github/workflows/pytest_ords.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytest_ords.yml b/.github/workflows/pytest_ords.yml index eea91c5..269a7aa 100644 --- a/.github/workflows/pytest_ords.yml +++ b/.github/workflows/pytest_ords.yml @@ -17,16 +17,17 @@ jobs: ref: ${{ github.event.pull_request.head.ref }} fetch-depth: 1 - name: Set up Python ${{ matrix.python-version }} - uses: conda-incubator/setup-miniconda@v2 + uses: conda-incubator/setup-miniconda@v3 with: auto-update-conda: true + channels: conda-forge,defaults python-version: ${{ matrix.python-version }} miniconda-version: "latest" - name: Install dependencies' shell: bash -l {0} run: | python -c "import sqlite3; print(0, sqlite3)" - conda install -c conda-forge poppler --freeze-installed + conda install -c conda-forge poppler --freeze-installed --no-update-deps --no-channel-priority python -c "import sqlite3; print(1, sqlite3)" python -m pip install --upgrade pip python -c "import sqlite3; print(2, sqlite3)"