Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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'
Expand Down Expand Up @@ -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
Expand All @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
python 3.8.5
poetry 1.1.4
poetry 1.1.12