changeset d37ed4ad3568 in modules/sale_payment:4.8
details:
https://hg.tryton.org/modules/sale_payment?cmd=changeset;node=d37ed4ad3568
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 1ea1e6381069 -r d37ed4ad3568 setup.py
--- a/setup.py Mon Apr 23 17:57:47 2018 +0200
+++ b/setup.py Fri Jan 25 23:34:31 2019 +0100
@@ -57,8 +57,6 @@
for dep in ['account_payment_clearing']:
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 1ea1e6381069 -r d37ed4ad3568 tox.ini
--- a/tox.ini Mon Apr 23 17:57:47 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}