Skip to content

Commit

Permalink
Not using dependency links anymore
Browse files Browse the repository at this point in the history
This was useful when we were heavily modifying daliuge and its
dependencies, but it's not needed anymore. In any case, if in the future
we require to reference non-PyPI packages we should use the PEP 508
mechanism anyway.

This fixes #8.

Signed-off-by: Rodrigo Tobar <[email protected]>
  • Loading branch information
rtobar committed Apr 18, 2019
1 parent 2c6257b commit ccae614
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
14 changes: 10 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,17 @@ Installation

To get the latest stable version::

pip install --process-dependency-links daliuge
pip install daliuge

Otherwise clone this repository, go inside,
and run either ``pip install --process-dependency-links .`` (preferred)
or ``python setup.py install``.
You can also install directly from GitHub::

pip install git+https://github.com/ICRAR/daliuge

Or if you plan to develop |daliuge|::

git clone https://github.com/ICRAR/daliuge
cd daliuge
pip install -e .

.. |daliuge| replace:: DALiuGE
.. _ICRAR: http://www.icrar.org
Expand Down
6 changes: 0 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,11 +184,6 @@ def run(self):
else:
install_requires.append("zeroconf >= 0.19.1")

# Packages that need to be installed from somewhere different than PyPI
dependency_links = [
# None at the moment
]

# Extra requirements that are not needed by your every day daliuge installation
extra_requires = {
# spead is required only for a specific app and its test, which we
Expand Down Expand Up @@ -232,7 +227,6 @@ def run(self):
'test.apps': ['dynlib_example.c']
},
install_requires=install_requires,
dependency_links=dependency_links,
extras_require=extra_requires,
test_suite="test",
entry_points={
Expand Down

0 comments on commit ccae614

Please sign in to comment.