Skip to content

Commit

Permalink
Merge pull request #202 from venth/poetry_1.1.11
Browse files Browse the repository at this point in the history
Update poetry from 1.1.10 to 1.1.11 to fix python 3.10 compatibility
  • Loading branch information
pdecat authored Oct 5, 2021
2 parents a22b3fe + a259d6f commit 73810a6
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: Build

env:
PYTHON_VERSION: 3.9
POETRY_VERSION: 1.1.10
POETRY_VERSION: 1.1.11

on:
push:
Expand All @@ -23,13 +23,13 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, 3.10-dev]
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, "3.10"]
exclude:
# Python 3.10-dev on Windows is excluded for now as this combination:
# Python 3.10 on Windows is excluded for now as this combination:
# - has no pywin32 wheel available yet, see https://github.com/mhammond/pywin32/issues/1588 and https://pypi.org/project/pywin32/301/#files
# - has no lxml wheel available yet, and building lxml 4.6.3 fails, even with Cython 0.29.24 installed
- os: windows-latest
python-version: 3.10-dev
python-version: "3.10"

steps:
- uses: actions/checkout@v2
Expand All @@ -46,7 +46,6 @@ jobs:
- name: Install poetry ${{ env.POETRY_VERSION }}
run: |
pip install poetry==${{ env.POETRY_VERSION }}
poetry config experimental.new-installer false # New installer does not support python 3.10 yet, see https://github.com/python-poetry/poetry/issues/4210
- name: Install aws-adfs and its dependencies
run: |
Expand Down

0 comments on commit 73810a6

Please sign in to comment.