Skip to content

Commit abe26de

Browse files
committed
include murmurhash fix when building with xcode >=12
1 parent c631578 commit abe26de

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,15 @@
3636
url='https://github.com/splitio/python-client',
3737
download_url=('https://github.com/splitio/python-client/tarball/' + __version__), # pylint: disable=undefined-variable
3838
license='Apache License 2.0',
39+
dependency_links=['https://github.com/splitio/mmh3cffi/tarball/development#egg=mmh3cffi-0.1.1'],
3940
install_requires=INSTALL_REQUIRES,
4041
tests_require=TESTS_REQUIRES,
4142
extras_require={
4243
'test': TESTS_REQUIRES,
4344
'redis': ['redis>=2.10.5'],
4445
'uwsgi': ['uwsgi>=2.0.0'],
45-
'cpphash': ['mmh3cffi>=0.1.4']
46+
# 'cpphash': ['mmh3cffi>=0.1.4']
47+
'cpphash': ['mmh3cffi']
4648
},
4749
setup_requires=['pytest-runner'],
4850
classifiers=[

splitio/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '8.2.0'
1+
__version__ = '8.2.1-rc1'

0 commit comments

Comments
 (0)