Skip to content

Commit

Permalink
FIX: use os.path.join in setup.py and guide users to install libuv1-d…
Browse files Browse the repository at this point in the history
…ev in documentation
  • Loading branch information
Kobzol committed Jul 17, 2018
1 parent d44ef02 commit 3e4f4f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/source/install.rst
Expand Up @@ -29,7 +29,7 @@ with HyperLoom)
In **Debian** based distributions, dependencies can be installed by the In **Debian** based distributions, dependencies can be installed by the
following commands: :: following commands: ::


apt install libuv-dev libprotobuf-dev apt install libuv1-dev libprotobuf-dev
pip install cloudpickle pip install cloudpickle


.. Note:: .. Note::
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Expand Up @@ -8,7 +8,7 @@




def read_version(): 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() return f.readline().rstrip()




Expand Down

0 comments on commit 3e4f4f8

Please sign in to comment.