From af0f7f102f8a1b714d8fb7feccf9680e102d8f91 Mon Sep 17 00:00:00 2001 From: Michael Foster <13611658+jmafoster1@users.noreply.github.com> Date: Tue, 21 Jan 2025 10:31:12 +0000 Subject: [PATCH 1/3] Update test-python-package.yaml Python 3.7 is deprecated, so I've removed it added 3.10 --- .github/workflows/test-python-package.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-python-package.yaml b/.github/workflows/test-python-package.yaml index f4083de..b9eb97e 100644 --- a/.github/workflows/test-python-package.yaml +++ b/.github/workflows/test-python-package.yaml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.7, 3.8, 3.9] + python-version: [3.8, 3.9, 10] steps: - uses: actions/checkout@v2 @@ -34,4 +34,4 @@ jobs: flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Test with pytest run: | - pytest \ No newline at end of file + pytest From 3db7f76987a9ad9e0d0d6a622da12a2cfbfb5873 Mon Sep 17 00:00:00 2001 From: Michael Foster <13611658+jmafoster1@users.noreply.github.com> Date: Tue, 21 Jan 2025 10:32:47 +0000 Subject: [PATCH 2/3] Fixed 3.10 typo --- .github/workflows/test-python-package.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-python-package.yaml b/.github/workflows/test-python-package.yaml index b9eb97e..0845957 100644 --- a/.github/workflows/test-python-package.yaml +++ b/.github/workflows/test-python-package.yaml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.8, 3.9, 10] + python-version: [3.8, 3.9, 3.10] steps: - uses: actions/checkout@v2 From ba82139afe887309ce4e8e27b15b0cd33b4542ea Mon Sep 17 00:00:00 2001 From: Michael Foster <13611658+jmafoster1@users.noreply.github.com> Date: Tue, 21 Jan 2025 10:36:22 +0000 Subject: [PATCH 3/3] Added quotes to python versions --- .github/workflows/test-python-package.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-python-package.yaml b/.github/workflows/test-python-package.yaml index 0845957..fb319c1 100644 --- a/.github/workflows/test-python-package.yaml +++ b/.github/workflows/test-python-package.yaml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.8, 3.9, 3.10] + python-version: ["3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v2