Skip to content

Commit

Permalink
merge develop branch for 0.8.1 (#16)
Browse files Browse the repository at this point in the history
* add mum hash
* add T1 hash
* add xx hash
* use optimized t1 hash with SSE4.2
* migrate to latest smhasher
* enable AES instruction set support.
* upgrade setuptools bootstrap script
* remove self upgrade setuptools
* fix GCC 5 bug, resolve #13
  • Loading branch information
flier authored May 9, 2017
1 parent e95633a commit d87a101
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
libraries += ["boost_python-mt"]
extra_compile_args += ["-msse4.2", "-maes"]
elif os.name == "posix":
libraries += ["boost_python", "rt"]
libraries += ["boost_python", "rt", "gcc"]
extra_compile_args += ["-msse4.2", "-maes"]

if os.getenv('TRAVIS') == 'true':
Expand All @@ -91,7 +91,7 @@
)

setup(name='pyhash',
version='0.8',
version='0.8.1',
description='Python Non-cryptographic Hash Library',
long_description="a python non-cryptographic hash library",
url='https://github.com/flier/pyfasthash',
Expand Down

0 comments on commit d87a101

Please sign in to comment.