Skip to content

Commit

Permalink
fix setuptools
Browse files Browse the repository at this point in the history
As documented here pypa/setuptools#4519 setuptools has released
a breaking change that removes a functionality used by some our dependencies breaking
the install process. In our case is the VCR package that has been already notified kevin1024/vcrpy#858

[run nft py tests]
  • Loading branch information
yabirgb authored and OjusWiZard committed Aug 9, 2024
1 parent 8391e57 commit 3e21e79
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/task_backend_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ jobs:
Get-ChildItem -Path $PYTHON_LOCATION
(Get-Command python).Path
- name: Install dependencies
run: |
run: |
uv pip install --system 'setuptools<72'
uv pip install --system --upgrade wheel pytest-cov
uv pip install --system -r requirements_dev.txt
uv pip install --system -e .
Expand Down

0 comments on commit 3e21e79

Please sign in to comment.