From bd0580c0c52465537ab919c583c5f9d0ec097822 Mon Sep 17 00:00:00 2001 From: Devon Ryan Date: Fri, 25 Jan 2019 22:08:21 +0100 Subject: [PATCH 1/3] Bump to 0.3.13, drop support for python2. --- .travis.yml | 5 +---- pyBigWig.h | 2 +- setup.py | 7 +++---- 3 files changed, 5 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5944727..8f0d104 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,7 @@ language: python python: - - "2.6" - - "2.7" - - "3.3" - - "3.4" - "3.5" - "3.6" + - "3.7" install: pip install numpy && python ./setup.py install script: nosetests -sv diff --git a/pyBigWig.h b/pyBigWig.h index 10cef5e..f842d53 100644 --- a/pyBigWig.h +++ b/pyBigWig.h @@ -2,7 +2,7 @@ #include #include "bigWig.h" -#define pyBigWigVersion "0.3.12" +#define pyBigWigVersion "0.3.13" typedef struct { PyObject_HEAD diff --git a/setup.py b/setup.py index 554a928..d9e5295 100755 --- a/setup.py +++ b/setup.py @@ -62,12 +62,12 @@ include_dirs = include_dirs) setup(name = 'pyBigWig', - version = '0.3.12', + version = '0.3.13', description = 'A package for accessing bigWig files using libBigWig', author = "Devon P. Ryan", author_email = "ryan@ie-freiburg.mpg.de", url = "https://github.com/dpryan79/pyBigWig", - download_url = "https://github.com/dpryan79/pyBigWig/tarball/0.3.11", + download_url = "https://github.com/dpryan79/pyBigWig/tarball/0.3.13", keywords = ["bioinformatics", "bigWig", "bigBed"], classifier = ["Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", @@ -77,10 +77,9 @@ "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.3", - "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Operating System :: POSIX", "Operating System :: Unix", From 1f68214dba27dd7f7253ade9cc5117562df4fc19 Mon Sep 17 00:00:00 2001 From: Devon Ryan Date: Fri, 25 Jan 2019 22:13:24 +0100 Subject: [PATCH 2/3] try python 3.7 again --- .travis.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8f0d104..9e47d50 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,8 @@ language: python python: - "3.5" - "3.6" - - "3.7" -install: pip install numpy && python ./setup.py install +install: + - pip install numpy && python ./setup.py install + - python: 3.7 + dist: xenial script: nosetests -sv From 4820d9dc3fcb0d82ac40108b017a2057bd651a77 Mon Sep 17 00:00:00 2001 From: Devon Ryan Date: Fri, 25 Jan 2019 22:16:52 +0100 Subject: [PATCH 3/3] try again --- .travis.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9e47d50..4d6f3b1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,8 @@ python: - "3.6" install: - pip install numpy && python ./setup.py install - - python: 3.7 - dist: xenial +matrix: + include: + - python: 3.7 + dist: xenial script: nosetests -sv