Skip to content

Commit

Permalink
Run downgrade command inside poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
MRichards99 committed Oct 1, 2024
1 parent f13a98d commit 7b88d20
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,13 +142,13 @@ jobs:
run: cp datagateway_api/search_api_mapping.json.example datagateway_api/search_api_mapping.json


- name: tmate session
uses: mxschmitt/action-tmate@v3
#- name: tmate session
# uses: mxschmitt/action-tmate@v3

# See comment in noxfile.py for explanation regarding this step
#- name: Downgrade setuptools
# run: pip install --upgrade setuptools==70.0.0
# if: matrix.python-version == '3.8' || matrix.python-version == '3.9' || matrix.python-version == '3.10'
- name: Downgrade setuptools
run: poetry run pip install --upgrade setuptools==70.0.0
if: matrix.python-version == '3.8' || matrix.python-version == '3.9' || matrix.python-version == '3.10'
- name: Install dependencies
run: poetry install

Expand Down Expand Up @@ -298,7 +298,7 @@ jobs:

# See comment in noxfile.py for explanation regarding this step
- name: Downgrade setuptools
run: pip install --upgrade setuptools==70.0.0
run: poetry run pip install --upgrade setuptools==70.0.0
- name: Install dependencies
run: poetry install

Expand Down Expand Up @@ -357,7 +357,7 @@ jobs:

# See comment in noxfile.py for explanation regarding this step
- name: Downgrade setuptools
run: pip install --upgrade setuptools==70.0.0
run: poetry run pip install --upgrade setuptools==70.0.0
- name: Install dependencies
run: poetry install

Expand Down

0 comments on commit 7b88d20

Please sign in to comment.