From c910e2eb8e450fc1de3671829393db65456fd2fd Mon Sep 17 00:00:00 2001 From: Josh Lloyd Date: Tue, 22 Aug 2023 15:57:13 -0600 Subject: [PATCH 1/2] updated actions to support new poetry and py versions --- .github/workflows/ci_workflow.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci_workflow.yml b/.github/workflows/ci_workflow.yml index df14194..3332491 100644 --- a/.github/workflows/ci_workflow.yml +++ b/.github/workflows/ci_workflow.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: # Only lint using the primary version used for dev - python-version: [3.7] + python-version: [3.11] steps: - uses: actions/checkout@v2 @@ -22,7 +22,7 @@ jobs: - name: Install Poetry run: | python -m pip install --upgrade pip - pip install poetry==1.2.* + pip install poetry==1.3.2 poetry install -v - name: Run lint command from tox.ini run: | @@ -35,7 +35,7 @@ jobs: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} strategy: matrix: - python-version: [3.7, 3.8, 3.9] + python-version: [3.7, 3.8, 3.9, 3.10, 3.11] steps: - uses: actions/checkout@v2 @@ -46,7 +46,7 @@ jobs: - name: Install Poetry run: | python -m pip install --upgrade pip - pip install poetry==1.2.* + pip install poetry==1.3.2 - name: Install dependencies run: | poetry install From 621fa662a43550b1e76f84e315ca5d2aff9c1c43 Mon Sep 17 00:00:00 2001 From: Josh Lloyd Date: Tue, 22 Aug 2023 16:00:03 -0600 Subject: [PATCH 2/2] fix 3.10 string --- .github/workflows/ci_workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci_workflow.yml b/.github/workflows/ci_workflow.yml index 3332491..79ebd75 100644 --- a/.github/workflows/ci_workflow.yml +++ b/.github/workflows/ci_workflow.yml @@ -35,7 +35,7 @@ jobs: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} strategy: matrix: - python-version: [3.7, 3.8, 3.9, 3.10, 3.11] + python-version: [3.7, 3.8, 3.9, "3.10", 3.11] steps: - uses: actions/checkout@v2