Skip to content

Commit 0181a86

Browse files
Fix install
1 parent 3749780 commit 0181a86

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/testing.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,12 @@ jobs:
7575
with:
7676
python-version: ${{ matrix.python }}
7777

78-
- name: Install connection requirements (msgpack package)
79-
if: startsWith(matrix.msgpack-deps, 'msgpack-python==') == false
78+
- name: Install specific version of msgpack package
79+
if: startsWith(matrix.msgpack-deps, 'msgpack==') == true
8080
run: |
8181
pip install ${{ matrix.msgpack-deps }}
82-
pip install -r requirements.txt
8382
84-
85-
- name: Install connection requirements (msgpack-python package)
83+
- name: Install specific version of msgpack-python package
8684
# msgpack package is a replacement for deprecated msgpack-python.
8785
# To test compatibility with msgpack-python we must ignore
8886
# requirements.txt install of msgpack package by overwriting it
@@ -91,7 +89,9 @@ jobs:
9189
run: |
9290
pip install ${{ matrix.msgpack-deps }}
9391
sed -i -e "s/^msgpack.*$/${{ matrix.msgpack-deps }}/" requirements.txt
94-
pip install -r requirements.txt
92+
93+
- name: Install package requirements
94+
run: pip install -r requirements.txt
9595

9696
- name: Install test requirements
9797
run: pip install -r requirements-test.txt

0 commit comments

Comments
 (0)