Skip to content
Snippets Groups Projects
Commit 34616981 authored by Ada Böhm's avatar Ada Böhm
Browse files

Merge branch 'master' into 'master'

FIX: use os.path.join in setup.py and guide users to install libuv1-dev in documentation

See merge request !1
parents d44ef02f 3e4f4f84
No related branches found
No related tags found
1 merge request!1FIX: use os.path.join in setup.py and guide users to install libuv1-dev in documentation
......@@ -29,7 +29,7 @@ with HyperLoom)
In **Debian** based distributions, dependencies can be installed by the
following commands: ::
apt install libuv-dev libprotobuf-dev
apt install libuv1-dev libprotobuf-dev
pip install cloudpickle
.. Note::
......
......@@ -8,7 +8,7 @@ import os
def read_version():
with open(os.path.dirname(__file__) + "../version") as f:
with open(os.path.join(os.path.dirname(__file__), "..", "version")) as f:
return f.readline().rstrip()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment