From 6cb059e755d84ea93a5448254f4f4a4a33eaf2b9 Mon Sep 17 00:00:00 2001 From: Tianqing Zhang Date: Wed, 31 Jul 2024 19:20:29 -0400 Subject: [PATCH] drop ceci 1.17 installation --- .github/workflows/smoke-test.yml | 3 --- .github/workflows/testing-and-coverage.yml | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/smoke-test.yml b/.github/workflows/smoke-test.yml index 483aec5..a1def73 100644 --- a/.github/workflows/smoke-test.yml +++ b/.github/workflows/smoke-test.yml @@ -32,9 +32,6 @@ jobs: pip install . pip install .[dev] if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - - name: (Temporarily) roll back ceci to pre-v2 - run: | - pip install ceci==1.17 - name: Run unit tests with pytest run: | python -m pytest tests diff --git a/.github/workflows/testing-and-coverage.yml b/.github/workflows/testing-and-coverage.yml index 4d8921a..8a1ffeb 100644 --- a/.github/workflows/testing-and-coverage.yml +++ b/.github/workflows/testing-and-coverage.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.9', '3.10', '3.11'] + python-version: ['3.10', '3.11'] steps: - uses: actions/checkout@v3