Skip to content

Commit b3346db

Browse files
committed
fix deprecated option in setup.py
1 parent 464e413 commit b3346db

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,6 @@ def exec_file(names):
5454
'test': ['pytest', 'responses'],
5555
'doc': ['Sphinx==1.4.6', 'sphinx-rtd-theme==0.1.9', 'sphinxcontrib-napoleon==0.5.3'],
5656
'format': ['flake8'],
57-
'e2e': ['python-olm==dev', 'canonicaljson']
57+
'e2e': ['python-olm @ git+https://github.com/poljar/python-olm.git@4752eb22f005cb9f6143857008572e6d83252841', 'canonicaljson']
5858
},
59-
dependency_links=[
60-
'git+https://github.com/poljar/python-olm.git@4752eb22f005cb9f6143857008572e6d83252841#egg=python-olm-dev'
61-
]
6259
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ commands=
1414
coverage run --source=matrix_client setup.py test
1515
coverage report
1616
- coveralls
17-
install_command = pip install --process-dependency-links {opts} {packages}
17+
install_command = pip install {opts} {packages}
1818

1919
[testenv:pep8]
2020
skip_install = True

0 commit comments

Comments
 (0)