File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -75,14 +75,12 @@ jobs:
75
75
with :
76
76
python-version : ${{ matrix.python }}
77
77
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
80
80
run : |
81
81
pip install ${{ matrix.msgpack-deps }}
82
- pip install -r requirements.txt
83
82
84
-
85
- - name : Install connection requirements (msgpack-python package)
83
+ - name : Install specific version of msgpack-python package
86
84
# msgpack package is a replacement for deprecated msgpack-python.
87
85
# To test compatibility with msgpack-python we must ignore
88
86
# requirements.txt install of msgpack package by overwriting it
91
89
run : |
92
90
pip install ${{ matrix.msgpack-deps }}
93
91
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
95
95
96
96
- name : Install test requirements
97
97
run : pip install -r requirements-test.txt
You can’t perform that action at this time.
0 commit comments