From 4959102ff805b201fa6ee2649e3aea96c86bff4f Mon Sep 17 00:00:00 2001 From: Chad Carlson Date: Mon, 20 Nov 2023 08:37:13 -0500 Subject: [PATCH 1/2] Update Python testing versions --- .github/workflows/quality-assurance.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/quality-assurance.yaml b/.github/workflows/quality-assurance.yaml index e6bb882..8c71e7d 100644 --- a/.github/workflows/quality-assurance.yaml +++ b/.github/workflows/quality-assurance.yaml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: [ '3.5', '3.6', '3.7', '3.8' ] + python: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ] steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v1 From b8d01724a956dfc1f7f6559b3bdb15b2abcf06c1 Mon Sep 17 00:00:00 2001 From: Chad Carlson Date: Mon, 20 Nov 2023 08:39:22 -0500 Subject: [PATCH 2/2] Use correct python version flag --- .github/workflows/quality-assurance.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/quality-assurance.yaml b/.github/workflows/quality-assurance.yaml index 8c71e7d..43ed7be 100644 --- a/.github/workflows/quality-assurance.yaml +++ b/.github/workflows/quality-assurance.yaml @@ -17,5 +17,6 @@ jobs: with: python-version: ${{ matrix.python }} - run: python -m pip install --upgrade pipenv wheel + - run: pipenv --python ${{ matrix.python }} - run: pipenv install - run: pipenv run "pytest"