Skip to content

Commit b5c0b2f

Browse files
authored
Merge pull request #1219 from DhavalGojiya/ci/pipenv-install-consistency
ci: refactor pipenv installation steps across all workflow files
2 parents d9f09e7 + fd2c124 commit b5c0b2f

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/documentation.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ jobs:
3737
with:
3838
python-version: "3.10"
3939
- name: Install pipenv
40-
run: |
41-
pip install pipenv
40+
run: pip install pipenv
4241
- name: Install dependencies
4342
run: |
4443
pipenv --python $(which python) install --dev

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
python-version: "3.9"
4646
cache: "pipenv"
4747
- name: Install pipenv
48-
run: pipx install pipenv
48+
run: pip install pipenv
4949
- name: Install dependencies
5050
run: pipenv install --dev --python=${{ matrix.python-version }}
5151
- name: Linter with pylint

0 commit comments

Comments
 (0)