Skip to content

Commit c9fe70c

Browse files
committed
Missed a couple of 'pip install' commands in GitHub workflows
1 parent 52e4d50 commit c9fe70c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
- name: Install Murfey
7878
run: |
7979
set -eux
80-
pip install --disable-pip-version-check -e "."[cicd,client,server,developer]
80+
pip install --disable-pip-version-check -e "."[cicd,server,developer]
8181
8282
- uses: shogo82148/actions-setup-mysql@v1
8383
with:

.github/workflows/publish-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Check current tag
2525
id: checkTag
2626
run: |
27-
pip install --disable-pip-version-check -e "."[cicd,client,server,developer]
27+
pip install --disable-pip-version-check -e "."[cicd,server,developer]
2828
VERSION=$(python -c "import murfey; print(murfey.__version__)")
2929
echo "newVersion=v$VERSION" >> $GITHUB_OUTPUT
3030

.github/workflows/version-bump.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Install package
4343
run: |
4444
set -eux
45-
pip install --disable-pip-version-check -e "."[cicd,client,server,developer]
45+
pip install --disable-pip-version-check -e "."[cicd,server,developer]
4646
- name: Run bumpversion and push tag
4747
env:
4848
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)