From aabfa7f3dc94cbeed59d2d0f88deaca154f12025 Mon Sep 17 00:00:00 2001 From: Chongyi Zheng Date: Mon, 23 Oct 2023 13:48:04 -0400 Subject: [PATCH 1/2] Add python 3.11 to tests --- .github/workflows/test_and_deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 19ace362..33094665 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -22,7 +22,7 @@ jobs: fail-fast: true matrix: platform: [ubuntu-latest, windows-latest, macos-latest] - python-version: [3.8, 3.9, "3.10"] + python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v3 From 6587ae7068dbca8fa3ad9f8f83e7d2939e1bd1ef Mon Sep 17 00:00:00 2001 From: Chongyi Zheng Date: Mon, 23 Oct 2023 13:50:17 -0400 Subject: [PATCH 2/2] Upgrade workflows --- .github/workflows/test_and_deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 33094665..ef56ebf3 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -25,7 +25,7 @@ jobs: python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: conda-incubator/setup-miniconda@v2 with: miniconda-version: "latest" @@ -46,7 +46,7 @@ jobs: PLATFORM: ${{ matrix.platform }} - name: Coverage - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v3 deploy: # this will run when you have tagged a commit, starting with "v*" @@ -56,7 +56,7 @@ jobs: runs-on: ubuntu-latest if: contains(github.ref, 'tags') steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v4 with: