Skip to content

Commit

Permalink
Modern pip has a real dependency resolver
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Jul 8, 2024
1 parent ac3892e commit 073a9f8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install celery==${{ matrix.celery-version }}
tornado==${{ matrix.tornado-version }}
-r requirements/default.txt
-r requirements/test.txt
pip install celery==${{ matrix.celery-version }} \
tornado==${{ matrix.tornado-version }} \
-r requirements/default.txt \
-r requirements/test.txt \
-r requirements/dev.txt
- name: Lint with pylint
Expand Down

0 comments on commit 073a9f8

Please sign in to comment.