Browse Source

upgrade libsecp256k1 (#83)

master
Ofek Lev 3 years ago
committed by GitHub
parent
commit
2dda855bfe
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      HISTORY.rst
  2. 3
      setup.py

5
HISTORY.rst

@ -8,8 +8,9 @@ master
- **Breaking:** Drop support for Python 2
- **Breaking:** Binary wheels for CPython require version 19.3 or later of ``pip`` to install
- Build binary wheels for AArch64 on Linux
- Build binary wheels for PyPy3.6 7.3.3 & PyPy3.7 7.3.3
- Build AArch64 binary wheels for Linux
- Build binary wheels for PyPy3.6 7.3.3 & PyPy3.7 7.3.3 on Linux
- Upgrade libsecp256k1 to the latest available version
14.0.0
^^^^^^

3
setup.py

@ -33,7 +33,7 @@ BUILDING_FOR_WINDOWS = detect_dll()
MAKE = 'gmake' if platform.system() in ['FreeBSD', 'OpenBSD'] else 'make'
# Version of libsecp256k1 to download if none exists in the `libsecp256k1` directory
LIB_TARBALL_URL = 'https://github.com/bitcoin-core/secp256k1/archive/0d9540b13ffcd7cd44cc361b8744b93d88aa76ba.tar.gz'
LIB_TARBALL_URL = 'https://github.com/bitcoin-core/secp256k1/archive/f2d9aeae6d5a7c7fbbba8bbb38b1849b784beef7.tar.gz'
# We require setuptools >= 3.3
@ -181,7 +181,6 @@ class build_clib(_build_clib):
'--enable-experimental',
'--enable-module-ecdh',
'--enable-benchmark=no',
# '--enable-endomorphism',
]
log.debug('Running configure: {}'.format(' '.join(cmd)))

Loading…
Cancel
Save