Browse Source

use curl

anonswap
Ofek Lev 6 years ago
parent
commit
cff374acaa
  1. 2
      .travis/build-linux-wheels.sh
  2. 2
      setup.py

2
.travis/build-linux-wheels.sh

@ -7,7 +7,7 @@ set -x
yum install -y pkg-config libffi libffi-devel
# Use updated GMP
wget https://ftp.gnu.org/gnu/gmp/gmp-6.1.2.tar.bz2 && tar -xjpf gmp-*.tar.bz2 && cd gmp* && ./configure --build=${BUILD_GMP_CPU}-pc-linux-gnu > /dev/null && make > /dev/null && make check > /dev/null && make install > /dev/null && cd ..
curl -O https://ftp.gnu.org/gnu/gmp/gmp-6.1.2.tar.bz2 && tar -xjpf gmp-*.tar.bz2 && cd gmp* && ./configure --build=${BUILD_GMP_CPU}-pc-linux-gnu > /dev/null && make > /dev/null && make check > /dev/null && make install > /dev/null && cd ..
# Compile wheels
for PYBIN in /opt/python/*/bin; do

2
setup.py

@ -262,7 +262,7 @@ else:
setup(
name='coincurve',
version='8.0.2-rc.2',
version='8.0.2-rc.3',
description='Cross-platform Python CFFI bindings for libsecp256k1',
long_description=open('README.rst', 'r').read(),

Loading…
Cancel
Save