File tree 3 files changed +16
-2
lines changed
3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,15 @@ cache: false
8
8
env :
9
9
matrix :
10
10
- TARGET=test
11
+ PYTHON_MSGPACK=msgpack-python==0.4.0
12
+ - TARGET=test
13
+ PYTHON_MSGPACK=msgpack==0.5.0
14
+ - TARGET=test
15
+ PYTHON_MSGPACK=msgpack==0.6.0
16
+ - TARGET=test
17
+ PYTHON_MSGPACK=msgpack==0.6.2
18
+ - TARGET=test
19
+ PYTHON_MSGPACK=msgpack==1.0.0
11
20
- OS=el DIST=6
12
21
- OS=el DIST=7
13
22
- OS=fedora DIST=28
Original file line number Diff line number Diff line change 1
- msgpack-python >= 0.4.0
1
+ msgpack >= 0.4.0
Original file line number Diff line number Diff line change @@ -9,8 +9,13 @@ echo "deb http://download.tarantool.org/tarantool/2x/ubuntu/ ${release} main" |
9
9
sudo apt-get update > /dev/null
10
10
sudo apt-get -q -y install tarantool
11
11
12
+ # Install module requirements.
13
+ #
14
+ # Keep it in sync with requirements.txt.
15
+ pip install " ${PYTHON_MSGPACK:- msgpack==1.0.0} "
16
+ python -c ' import msgpack; print(msgpack.version)'
17
+
12
18
# Install testing dependencies.
13
- pip install -r requirements.txt
14
19
pip install pyyaml
15
20
16
21
# Run tests.
You can’t perform that action at this time.
0 commit comments