From 9bec72bbda0c95aecce780edb035d10d58ef629b Mon Sep 17 00:00:00 2001 From: Douglas Thor Date: Mon, 7 Oct 2024 20:16:23 -0700 Subject: [PATCH] correct pip install; don't build 2.7 through 3.4 --- .github/workflows/ci.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4889132..c18d884 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,7 +19,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["2.7", "3.3", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] allowed-to-fail: [false] include: - python-version: "3.13" @@ -37,7 +37,8 @@ jobs: - name: Install dependencies continue-on-error: ${{ matrix.allowed-to-fail }} run: | - pip install -e .[dev] + pip install -r requirements.txt + pip install -e . - name: Run tests continue-on-error: ${{ matrix.allowed-to-fail }}