Skip to content

Commit

Permalink
Merge pull request #77 from deeptools/0.3.13
Browse files Browse the repository at this point in the history
Bump to 0.3.13, drop support for python2.
  • Loading branch information
dpryan79 authored Jan 25, 2019
2 parents 6d5b772 + 4820d9d commit 081d758
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
11 changes: 6 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install: pip install numpy && python ./setup.py install
install:
- pip install numpy && python ./setup.py install
matrix:
include:
- python: 3.7
dist: xenial
script: nosetests -sv
2 changes: 1 addition & 1 deletion pyBigWig.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include <structmember.h>
#include "bigWig.h"

#define pyBigWigVersion "0.3.12"
#define pyBigWigVersion "0.3.13"

typedef struct {
PyObject_HEAD
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]",
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",
Expand All @@ -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",
Expand Down

0 comments on commit 081d758

Please sign in to comment.