Skip to content

Commit e890757

Browse files
committed
fixes to workflow
1 parent d3520a8 commit e890757

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/reusable_buildtest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ jobs:
148148
- name: Install pymgclient
149149
run: |
150150
docker exec -i testcontainer \
151-
bash -c "python${{ matrix.python_version }} -m pip install ./pymgclient/dist/pymgclient-* ${{ env.BREAK_PACKAGES }}"
151+
bash -c "python${{ matrix.python_version }} -m pip install ./pymgclient/dist/pymgclient-*.whl ${{ env.BREAK_PACKAGES }}"
152152
153153
- name: Import mgclient to validate installation
154154
run: |

tools/install_linux_deps.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,9 @@ install_deb() {
168168
install_rpm() {
169169
echo "Installing RPM dependencies..."
170170
"${SUDO[@]}" dnf install -y ${RPM_DEPS[*]}
171+
172+
# install ensurepip because pip isn't always provided for the version of python
173+
"$python_binary" -m ensurepip
171174
}
172175
173176
case "$distro" in

0 commit comments

Comments
 (0)