[med-svn] [Git][med-team/python-parasail][upstream] New upstream version 1.2.4
Nilesh Patra
gitlab at salsa.debian.org
Wed Feb 10 17:40:44 GMT 2021
Nilesh Patra pushed to branch upstream at Debian Med / python-parasail
Commits:
3fe87121 by Nilesh Patra at 2021-02-10T23:06:12+05:30
New upstream version 1.2.4
- - - - -
3 changed files:
- .travis.yml
- CHANGELOG.rst
- parasail/__init__.py
Changes:
=====================================
.travis.yml
=====================================
@@ -13,25 +13,27 @@ jobs:
before_install:
- choco install python --version 3.7.5
- export PATH="/c/Python37:/c/Python37/Scripts:$PATH"
+ # make sure it's on PATH as 'python3'
+ - ln -s /c/Python37/python.exe /c/Python37/python3.exe
-# all three OSes agree about 'pip3'
-# 'python' points to Python 2.7 on macOS but points to Python 3.7 on Linux and Windows
-# 'python3' is a 'command not found' error on Windows but 'py' works on Windows only
+# cibuildwheel creates a virtualenv for the test
+# it seems to use "python" not "python3" for testing
+# while the rest of the build etc should use python3
env:
global:
+ - CIBW_BUILD_VERBOSITY=3
- CIBW_BUILD="cp37-*"
- - CIBW_TEST_COMMAND_MACOS="python3 -m unittest discover {project}/tests"
- - CIBW_TEST_COMMAND_LINUX="python3 -m unittest discover {project}/tests"
- - CIBW_TEST_COMMAND_WINDOWS="python -m unittest discover {project}/tests"
+ - CIBW_TEST_COMMAND="python -m unittest discover {project}/tests"
- TWINE_USERNAME=__token__
install:
- - pip3 install twine cibuildwheel==1.6.4 wheel
- - wget -O parasail-master.zip https://github.com/jeffdaily/parasail/archive/master.zip
+ - python3 -m pip install cibuildwheel==1.6.4 wheel
+ - python3 -m pip install --upgrade --upgrade-strategy eager twine
script:
- - cibuildwheel --output-dir wheelhouse
- - if [[ "$TRAVIS_OS_NAME" = "windows" ]]; then python setup.py sdist -d wheelhouse; fi
+ - python3 -m cibuildwheel --output-dir wheelhouse
+ - if [[ "$TRAVIS_OS_NAME" = "windows" ]]; then python3 setup.py sdist -d wheelhouse; fi
after_success:
- - if [[ $TRAVIS_TAG ]]; then python3 -m twine upload wheelhouse/* || python -m twine upload wheelhouse/* ; fi
+ - if [[ $TRAVIS_TAG ]]; then python3 -m pip install --upgrade --upgrade-strategy eager twine ; fi
+ - if [[ $TRAVIS_TAG ]]; then python3 -m twine upload wheelhouse/* ; fi
=====================================
CHANGELOG.rst
=====================================
@@ -10,6 +10,11 @@ Unreleased_
-----------
The Unreleased section will be empty for tagged releases. Unreleased functionality appears in the develop branch.
+------------------
+1.2.4 - 2021-02-06
+------------------
+- Fix #60 Missing wheels on PyPI
+
-------------------
1.2.3_ - 2020-12-16
-------------------
@@ -159,6 +164,7 @@ The Unreleased section will be empty for tagged releases. Unreleased functionali
First tagged release. The 'master' branch always represents the latest stable code. Tagged releases correspond to pypi releases.
.. _Unreleased: https://github.com/jeffdaily/parasail-python/compare/v1.2.3...master
+.. _1.2.4: https://github.com/jeffdaily/parasail-python/compare/v1.2.3...v1.2.4
.. _1.2.3: https://github.com/jeffdaily/parasail-python/compare/v1.2.2...v1.2.3
.. _1.2.2: https://github.com/jeffdaily/parasail-python/compare/v1.2.1...v1.2.2
.. _1.2.1: https://github.com/jeffdaily/parasail-python/compare/v1.2...v1.2.1
=====================================
parasail/__init__.py
=====================================
@@ -6,7 +6,7 @@ import sys
import numpy
-__version__ = "1.2.3"
+__version__ = "1.2.4"
__title__ = "parasail"
__description__ = "pairwise sequence alignment library"
__uri__ = "https://github.com/jeffdaily/parasail-python"
View it on GitLab: https://salsa.debian.org/med-team/python-parasail/-/commit/3fe871216b401e3e861850288f66dd4f2c7d0105
--
View it on GitLab: https://salsa.debian.org/med-team/python-parasail/-/commit/3fe871216b401e3e861850288f66dd4f2c7d0105
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-med-commit/attachments/20210210/0a4cc1c3/attachment-0001.html>
More information about the debian-med-commit
mailing list