changeset 6e3a4a309db3 in modules/analytic_invoice:5.0
details:
https://hg.tryton.org/modules/analytic_invoice?cmd=changeset;node=6e3a4a309db3
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 b33464bb34b2 -r 6e3a4a309db3 setup.py
--- a/setup.py Mon Oct 01 13:36:13 2018 +0200
+++ b/setup.py Fri Jan 25 23:30:04 2019 +0100
@@ -55,8 +55,6 @@
for dep in ['account_asset']:
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 b33464bb34b2 -r 6e3a4a309db3 tox.ini
--- a/tox.ini Mon Oct 01 13:36:13 2018 +0200
+++ b/tox.ini Fri Jan 25 23:30:04 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}