Skip to content

Commit

Permalink
Use poetry 1.5 for python 3.7 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
JWCook committed Sep 19, 2023
1 parent b2dc54b commit b181947
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,13 @@ jobs:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: snok/[email protected]
with:
version: '1.5.1' # For python 3.7 compatibility
virtualenvs-in-project: true

# Cache packages per python version, and reuse until lockfile changes
Expand All @@ -54,7 +55,7 @@ jobs:
analyze:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ env.LATEST_PY_VERSION }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,13 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ env.LATEST_PY_VERSION }}
- uses: snok/[email protected]
with:
version: '1.5.1' # For python 3.7 compatibility
virtualenvs-in-project: true

- name: Set pre-release version
Expand Down

0 comments on commit b181947

Please sign in to comment.