changeset 2f734c76a9ad in modules/stock_lot_sled:4.8
details:
https://hg.tryton.org/modules/stock_lot_sled?cmd=changeset;node=2f734c76a9ad
description:
Replace --process-dependency-link by --find-links
issue8044
diffstat:
setup.py | 2 --
tox.ini | 2 +-
2 files changed, 1 insertions(+), 3 deletions(-)
diffs (21 lines):
diff -r fb7f3b05e343 -r 2f734c76a9ad setup.py
--- a/setup.py Mon Apr 23 17:44:40 2018 +0200
+++ b/setup.py Fri Jan 25 23:34:31 2019 +0100
@@ -54,8 +54,6 @@
requires.append(get_require_version('trytond'))
tests_require = []
dependency_links = []
-if minor_version % 2:
- dependency_links.append('https://trydevpi.tryton.org/')
setup(name=name,
version=version,
diff -r fb7f3b05e343 -r 2f734c76a9ad tox.ini
--- a/tox.ini Mon Apr 23 17:44:40 2018 +0200
+++ b/tox.ini Fri Jan 25 23:34:31 2019 +0100
@@ -12,4 +12,4 @@
postgresql: TRYTOND_DATABASE_URI={env:POSTGRESQL_URI:postgresql://}
sqlite: DB_NAME={env:SQLITE_NAME::memory:}
postgresql: DB_NAME={env:POSTGRESQL_NAME:test}
-install_command = pip install --pre --process-dependency-links {opts}
{packages}
+install_command = pip install --pre --find-links https://trydevpi.tryton.org/
{opts} {packages}