Use msgpack pip package everywhere

This commit is contained in:
shortcutme 2018-02-27 02:48:15 +01:00
parent af57083afd
commit bca5d8a6c5
No known key found for this signature in database
GPG key ID: 5B63BAE6CB9613AE
5 changed files with 5 additions and 5 deletions

2
Vagrantfile vendored
View file

@ -40,6 +40,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.provision "shell",
inline: "sudo apt-get install msgpack-python python-gevent python-pip python-dev -y"
config.vm.provision "shell",
inline: "sudo pip install msgpack-python --upgrade"
inline: "sudo pip install msgpack --upgrade"
end