Skip to content
This repository has been archived by the owner on Nov 25, 2023. It is now read-only.

Commit

Permalink
Release 0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
vimalkvn committed Nov 30, 2015
1 parent ac282be commit 1d6621b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
History
=======
0.2.5 (2015-11-30)
------------------
* Bugfix: Use known versions of libraries as dependencies in setup.py.
Otherwise, pip installs latest versions which haven't been tested.
* Remove Codons label, change START to AUG [riboplot].

0.2.4 (2015-11-25)
------------------
* Bugfix: ribocount now returns correct read counts if an offset is provided.
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,6 @@ recursive-include docs _static/*
recursive-include docs _styles/fonts/*.ttf
recursive-include docs _templates/*.html

prune docs/_build

include tests/README.rst
2 changes: 1 addition & 1 deletion riboplot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = 'Vimalkumar Velayudhan'
__email__ = 'vimalkumarvelayudhan@gmail.com'
__version__ = '0.2.4'
__version__ = '0.2.5'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
with open('HISTORY.rst') as history_file:
history = history_file.read().replace('.. :changelog:', '')

requirements = ['matplotlib', 'pysam', 'mock==1.0.1']
requirements = ['matplotlib<=1.4.3', 'pysam<=0.8.3', 'mock==1.0.1']

test_requirements = [
# TODO: put package test requirements here
]

setup(
name='riboplot',
version='0.2.4',
version='0.2.5',
description="Plot read counts of RiboSeq data from BAM format alignment files",
long_description=readme + '\n\n' + history,
author="Vimalkumar Velayudhan",
Expand Down

0 comments on commit 1d6621b

Please sign in to comment.