Skip to content
Open
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/check_python_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,14 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install compatible packaging tools
run: python -m pip install --upgrade "pip<24" "setuptools<70"

Comment thread
ktyagiapphelix2u marked this conversation as resolved.
Outdated
- name: Install repo-tools
run: pip install edx-repo-tools[find_dependencies]
run: python -m pip install edx-repo-tools[find_dependencies]

- name: Install setuptool
run: pip install setuptools
- name: Ensure setuptools is available
run: python -m pip install --force-reinstall "setuptools<70"
Comment thread
ktyagiapphelix2u marked this conversation as resolved.
Outdated

- name: Run Python script
run: |
Expand Down
Loading