Skip to content

Commit

Permalink
! pyyaml 5.4.1 workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksei Rubashev committed Jul 23, 2024
1 parent 77e4b7a commit e72b2cd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,12 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

# PyYaml 5.4.1 requires cython < 3.0.0 for Python 2.7
- name: Install dependencies
run: python -m pip install --no-deps -r requirements.txt
run: |
python -m pip pip install "cython<3.0.0"
python -m pip install --no-build-isolation pyyaml==5.4.1
python -m pip install --no-deps -r requirements.txt
- name: Create .env
run: |
Expand Down

0 comments on commit e72b2cd

Please sign in to comment.