Update pyclblast package version number

pull/414/head
Cedric Nugteren 2021-01-21 20:43:22 +01:00
parent a5ef06ec57
commit 07837a5c2d
2 changed files with 12 additions and 1 deletions

View File

@ -39,9 +39,20 @@ And then compile the library from this location using the `setup.py` file:
python setup.py install
Testing PyCLBlast
-------------
The main exhaustive tests are the main CLBlast test binaries. Apart from that, you can also run the PyCLBlast smoke tests from the `test` subfolder, e.g. as follows:
python -m unittest discover
How to release a new version on PyPi
-------------
Following [the guide](https://packaging.python.org/tutorials/packaging-projects/), in essence doing (after changing the version number in `setup.py`):
python3 setup.py sdist bdist_wheel
python3 -m twine upload --repository pypi dist/pyclblast-1.3.1.tar.gz
# use '__token__' as username and supply the token from your PyPi account

View File

@ -22,7 +22,7 @@ ext_modules.append(
setup(
name="pyclblast",
version="1.3.0",
version="1.3.1",
author="Cedric Nugteren",
author_email="web@cedricnugteren.nl",
url="https://github.com/CNugteren/CLBlast/blob/master/src/pyclblast",