From be7e605a8ce468845a19ce8f93b2892a171bc804 Mon Sep 17 00:00:00 2001 From: flynn Date: Wed, 22 Dec 2021 16:44:18 -0500 Subject: [PATCH 1/3] py3.10 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 42a9b4d..40444a3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -59,7 +59,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7.12, 3.8.12, 3.9.8] + python-version: [3.7.12, 3.8.12, 3.9.8, 3.10.1] steps: - name: Checkout @@ -125,7 +125,7 @@ jobs: runs-on: macos-10.15 strategy: matrix: - python-version: [3.7.12, 3.8.12, 3.9.8] + python-version: [3.7.12, 3.8.12, 3.9.8, 3.10.1] steps: - name: Checkout From 597801029768c09715fea63e780bb1d1c32867cb Mon Sep 17 00:00:00 2001 From: flynn Date: Wed, 22 Dec 2021 16:50:12 -0500 Subject: [PATCH 2/3] poetry --- .tool-versions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.tool-versions b/.tool-versions index 3f1c25a..615fefe 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1,2 +1,2 @@ python 3.8.5 -poetry 1.1.4 +poetry 1.1.12 From 88d3b19a1fb3c32cfe14a6b60c325f80e31dc362 Mon Sep 17 00:00:00 2001 From: flynn Date: Wed, 22 Dec 2021 16:53:04 -0500 Subject: [PATCH 3/3] bmp cache --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 40444a3..c63c1be 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,9 +29,9 @@ jobs: uses: actions/cache@v1 with: path: ~/.asdf - key: v4-${{ runner.os }}-asdf-${{ hashFiles(format('{0}{1}', github.workspace, '/poetry.lock')) }} + key: v5-${{ runner.os }}-asdf-${{ hashFiles(format('{0}{1}', github.workspace, '/poetry.lock')) }} restore-keys: | - v4-${{ runner.os }}-asdf- + v5-${{ runner.os }}-asdf- - name: Install tools run: | @@ -87,9 +87,9 @@ jobs: uses: actions/cache@v1 with: path: ~/.asdf - key: v4-${{ runner.os }}-${{ matrix.python-version }}-asdf-${{ hashFiles(format('{0}{1}', github.workspace, '/poetry.lock')) }} + key: v5-${{ runner.os }}-${{ matrix.python-version }}-asdf-${{ hashFiles(format('{0}{1}', github.workspace, '/poetry.lock')) }} restore-keys: | - v4-${{ runner.os }}-${{ matrix.python-version }}-asdf- + v5-${{ runner.os }}-${{ matrix.python-version }}-asdf- - name: Install python if: steps.cache-deps.outputs.cache-hit != 'true' @@ -152,9 +152,9 @@ jobs: uses: actions/cache@v1 with: path: ~/.asdf - key: v4-${{ runner.os }}-${{ matrix.python-version }}-asdf-${{ hashFiles(format('{0}{1}', github.workspace, '/poetry.lock')) }} + key: v5-${{ runner.os }}-${{ matrix.python-version }}-asdf-${{ hashFiles(format('{0}{1}', github.workspace, '/poetry.lock')) }} restore-keys: | - v4-${{ runner.os }}-${{ matrix.python-version }}-asdf- + v5-${{ runner.os }}-${{ matrix.python-version }}-asdf- - name: Install python if: steps.cache-deps.outputs.cache-hit != 'true'