changeset d1540c460941 in modules/stock_location_move:5.0
details:
https://hg.tryton.org/modules/stock_location_move?cmd=changeset;node=d1540c460941
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 be3912a59e00 -r d1540c460941 setup.py
--- a/setup.py Mon Oct 01 15:21:40 2018 +0200
+++ b/setup.py Fri Jan 25 23:30:05 2019 +0100
@@ -55,8 +55,6 @@
for dep in info.get('extras_depend', []):
tests_require.append(get_require_version('trytond_%s' % dep))
dependency_links = []
-if minor_version % 2:
- dependency_links.append('https://trydevpi.tryton.org/')
setup(name=name,
version=version,
diff -r be3912a59e00 -r d1540c460941 tox.ini
--- a/tox.ini Mon Oct 01 15:21:40 2018 +0200
+++ b/tox.ini Fri Jan 25 23:30:05 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}