Skip to content
Open
Changes from all 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
10 changes: 6 additions & 4 deletions .github/workflows/check_python_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,13 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install repo-tools
run: pip install edx-repo-tools[find_dependencies]
- name: Upgrade pip and setuptools
run: python -m pip install --upgrade pip setuptools

- name: Install setuptool
run: pip install setuptools
- name: Install repo-tools
run: |
python -m pip install edx-repo-tools[find_dependencies]
python -m pip install --upgrade 'requirements-parser>=0.13.0'

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