Skip to content

Commit

Permalink
Readd fix for python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Reillyhewitson committed Jan 10, 2023
1 parent 985aa02 commit f9eb154
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,15 @@ jobs:
- name: Install Poetry
run: pip install poetry==1.1.9

# This command is a workaround for getting Poetry working with Python 3.10. An
# fix is made in Poetry 1.2.0a2 but there is currently no official release for
# Poetry 1.2 and am apprehensive to moving to a pre-release. Disabling the
# experimental installer is a workaround for Poetry 1.1.x
# See https://github.com/python-poetry/poetry/issues/4210 for more details
- name: Disable Poetry's experimental new installer
if: ${{ matrix.python-version == '3.10'}}
run: poetry config experimental.new-installer false

# Prep for using the API for tests
- name: Create log file
run: touch logs.log
Expand Down

0 comments on commit f9eb154

Please sign in to comment.