Skip to content

Commit 1553fad

Browse files
committed
use install_requires
1 parent af0952d commit 1553fad

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@
2323
'futures>=3.0.5;python_version<"3"'
2424
]
2525

26-
with open(path.join(path.abspath(path.dirname(__file__)),
27-
'splitio', 'version.py')) as f:
26+
with open(path.join(path.abspath(path.dirname(__file__)), 'splitio', 'version.py')) as f:
2827
exec(f.read()) # pylint: disable=exec-used
2928

3029
setup(
@@ -38,12 +37,13 @@
3837
license='Apache License 2.0',
3938
install_requires=INSTALL_REQUIRES,
4039
tests_require=TESTS_REQUIRES,
41-
dependency_links=['https://github.com/splitio/mmh3cffi/tarball/feature/development#egg=mmh3cffi-0.2.0'],
40+
# dependency_links=['https://github.com/splitio/mmh3cffi/tarball/feature/development#egg=mmh3cffi-0.2.0'],
4241
extras_require={
4342
'test': TESTS_REQUIRES,
4443
'redis': ['redis>=2.10.5'],
4544
'uwsgi': ['uwsgi>=2.0.0'],
46-
'cpphash': ['mmh3cffi']
45+
# 'cpphash': ['mmh3cffi==0.2.0']
46+
'cpphash': ['mmh3cffi@git+ssh://git@github.com/splitio/mmh3cffi@development#egg=mmh3cffi']
4747
},
4848
setup_requires=['pytest-runner'],
4949
classifiers=[

0 commit comments

Comments
 (0)