[med-svn] [Git][med-team/python-parasail][master] 6 commits: New upstream version 1.2.4

Nilesh Patra (@nilesh) gitlab at salsa.debian.org
Sun Aug 15 19:53:25 BST 2021



Nilesh Patra pushed to branch master at Debian Med / python-parasail


Commits:
3fe87121 by Nilesh Patra at 2021-02-10T23:06:12+05:30
New upstream version 1.2.4
- - - - -
ea2fb2bb by Nilesh Patra at 2021-08-16T00:18:35+05:30
d/watch: Fix watch regex

- - - - -
a6ec6e51 by Nilesh Patra at 2021-08-16T00:20:05+05:30
Add d/gbp.conf

- - - - -
fddea142 by Nilesh Patra at 2021-08-16T00:20:46+05:30
New upstream version 1.2.4
- - - - -
c6c331de by Nilesh Patra at 2021-08-16T00:20:48+05:30
Update upstream source from tag 'upstream/1.2.4'

Update to upstream version '1.2.4'
with Debian dir 90e6c8543ab244e69bc8f12c428815d474bcfcf8
- - - - -
d7e55335 by Nilesh Patra at 2021-08-16T00:21:09+05:30
Upload to unstable

- - - - -


7 changed files:

- − .gitignore
- − .travis.yml
- CHANGELOG.rst
- debian/changelog
- + debian/gbp.conf
- debian/watch
- parasail/__init__.py


Changes:

=====================================
.gitignore deleted
=====================================
@@ -1,9 +0,0 @@
-build/
-dist/
-parasail.egg-info/
-*.pyc
-*.so
-*.dylib
-*.dll
-parasail-master*
-autotools/


=====================================
.travis.yml deleted
=====================================
@@ -1,37 +0,0 @@
-language: python
-
-jobs:
-  include:
-    # perform a linux build
-    - services: docker
-    # and a mac build
-    - os: osx
-      language: shell
-    # and a windows build
-    - os: windows
-      language: shell
-      before_install:
-        - choco install python --version 3.7.5
-        - export PATH="/c/Python37:/c/Python37/Scripts:$PATH"
-
-# 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
-env:
-  global:
-    - 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"
-    - 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
-
-script:
-  - cibuildwheel --output-dir wheelhouse
-  - if [[ "$TRAVIS_OS_NAME" = "windows" ]];  then python setup.py sdist -d wheelhouse; fi
-
-after_success:
-  - if [[ $TRAVIS_TAG ]]; then python3 -m twine upload wheelhouse/* || python -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


=====================================
debian/changelog
=====================================
@@ -1,3 +1,11 @@
+python-parasail (1.2.4-1) unstable; urgency=medium
+
+  * New upstream version 1.2.4
+  * d/watch: Fix watch regex
+  * Add d/gbp.conf
+
+ -- Nilesh Patra <nilesh at debian.org>  Mon, 16 Aug 2021 00:20:52 +0530
+
 python-parasail (1.2.3-1) unstable; urgency=medium
 
   * New upstream version


=====================================
debian/gbp.conf
=====================================
@@ -0,0 +1,3 @@
+[DEFAULT]
+pristine-tar=True
+filter=[ '.gitignore', '.travis.yml', '.git*' ]


=====================================
debian/watch
=====================================
@@ -1,4 +1,4 @@
 version=4
 
 opts="filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%@PACKAGE at -$1.tar.gz%" \
-https://github.com/jeffdaily/parasail-python/releases .*/archive/v?(\d[\d.]+)\.tar\.gz
+https://github.com/jeffdaily/parasail-python/releases .*/archive/.*/v?(\d[\d.]+)\.tar\.gz


=====================================
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/-/compare/21450dc225d9c19548feb56b36cee3680f7173b5...d7e55335990dfd1ab54ec63f69e52590f2b073ac

-- 
View it on GitLab: https://salsa.debian.org/med-team/python-parasail/-/compare/21450dc225d9c19548feb56b36cee3680f7173b5...d7e55335990dfd1ab54ec63f69e52590f2b073ac
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/20210815/64aee6e2/attachment-0001.htm>


More information about the debian-med-commit mailing list