From 3762466a586cd6ef9edba9de1047ae5d7d7a4707 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Tue, 12 Apr 2022 17:12:07 -0400 Subject: [PATCH] Try running CI on 3.10 and drop eager install --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d6ed44db..b9321273 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,13 +25,13 @@ jobs: - name: Setup python uses: actions/setup-python@v2 with: - python-version: '3.9' + python-version: '3.10' - name: Install dependencies - run: pip install -e . --upgrade-strategy eager -r requirements.txt + run: pip install -e . -r requirements.txt - name: Run piker cli - run: piker + run: piker testing: name: 'test suite' @@ -44,7 +44,7 @@ jobs: - name: Setup python uses: actions/setup-python@v2 with: - python-version: '3.9' + python-version: '3.10' - name: Install dependencies run: pip install -U . -r requirements-test.txt -r requirements.txt --upgrade-strategy eager