0.4.5
Add wheel for 3.9.
This commit is contained in:
parent
7d4e2f4edd
commit
2748334ffd
2 changed files with 5 additions and 1 deletions
|
|
@ -52,6 +52,9 @@ PY37="/opt/python/cp37-cp37m/bin"
|
||||||
PY38="/opt/python/cp38-cp38/bin"
|
PY38="/opt/python/cp38-cp38/bin"
|
||||||
"${PY38}/python" setup.py build_static
|
"${PY38}/python" setup.py build_static
|
||||||
|
|
||||||
|
PY39="/opt/python/cp39-cp39/bin"
|
||||||
|
"${PY39}/python" setup.py build_static
|
||||||
|
|
||||||
# Replace the package name defined in setup.py so we can push this to PyPI
|
# Replace the package name defined in setup.py so we can push this to PyPI
|
||||||
# without stomping on the source dist.
|
# without stomping on the source dist.
|
||||||
sed -i "s|name=PACKAGE_NAME,|name='sqlcipher3-binary',|g" setup.py
|
sed -i "s|name=PACKAGE_NAME,|name='sqlcipher3-binary',|g" setup.py
|
||||||
|
|
@ -59,6 +62,7 @@ sed -i "s|name=PACKAGE_NAME,|name='sqlcipher3-binary',|g" setup.py
|
||||||
"${PY36}/pip" wheel /io/sqlcipher3 -w /io/wheelhouse
|
"${PY36}/pip" wheel /io/sqlcipher3 -w /io/wheelhouse
|
||||||
"${PY37}/pip" wheel /io/sqlcipher3 -w /io/wheelhouse
|
"${PY37}/pip" wheel /io/sqlcipher3 -w /io/wheelhouse
|
||||||
"${PY38}/pip" wheel /io/sqlcipher3 -w /io/wheelhouse
|
"${PY38}/pip" wheel /io/sqlcipher3 -w /io/wheelhouse
|
||||||
|
"${PY39}/pip" wheel /io/sqlcipher3 -w /io/wheelhouse
|
||||||
|
|
||||||
for whl in /io/wheelhouse/*.whl; do
|
for whl in /io/wheelhouse/*.whl; do
|
||||||
auditwheel repair "$whl" -w /io/wheelhouse/
|
auditwheel repair "$whl" -w /io/wheelhouse/
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -13,7 +13,7 @@ from setuptools import Extension
|
||||||
# If you need to change anything, it should be enough to change setup.cfg.
|
# If you need to change anything, it should be enough to change setup.cfg.
|
||||||
|
|
||||||
PACKAGE_NAME = 'sqlcipher3'
|
PACKAGE_NAME = 'sqlcipher3'
|
||||||
VERSION = '0.4.4'
|
VERSION = '0.4.5'
|
||||||
|
|
||||||
# define sqlite sources
|
# define sqlite sources
|
||||||
sources = [os.path.join('src', source)
|
sources = [os.path.join('src', source)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue