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.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vimalkvn committed Oct 29, 2015
1 parent d9c51e1 commit 3355f77
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 8 deletions.
8 changes: 4 additions & 4 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Types of Contributions
Report Bugs
~~~~~~~~~~~

Report bugs at https://github.com/vimalkumarvelayudhan/riboplot/issues.
Report bugs at https://github.com/vimalkvn/riboplot/issues.

If you are reporting a bug, please include:

Expand Down Expand Up @@ -43,7 +43,7 @@ articles, and such.
Submit Feedback
~~~~~~~~~~~~~~~

The best way to send feedback is to file an issue at https://github.com/vimalkumarvelayudhan/riboplot/issues.
The best way to send feedback is to file an issue at https://github.com/vimalkvn/riboplot/issues.

If you are proposing a feature:

Expand Down Expand Up @@ -100,12 +100,12 @@ Before you submit a pull request, check that it meets these guidelines:
your new functionality into a function with a docstring, and add the
feature to the list in README.rst.
3. The pull request should work for Python 2.6, 2.7, 3.3, and 3.4, and for PyPy. Check
https://travis-ci.org/vimalkumarvelayudhan/riboplot/pull_requests
https://travis-ci.org/vimalkvn/riboplot/pull_requests
and make sure that the tests pass for all supported Python versions.

Tips
----

To run a subset of tests::

$ python -m unittest tests.test_riboplot
$ python -m unittest tests.test_riboplot
8 changes: 8 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
History
=======
0.2.2 (2015-10-29)
------------------
* Use default linewidth (riboplot), Minor changes to default plot style.
* Use 'Agg' as the default matplotlib backend (prevent $DISPLAY errors).
* Use smaller images for the help section.
* Fix typo in HISTORY.rst.
* Update Github repository URL.

0.2.1 (2015-10-16)
------------------
Fix: Add mock again to setup requirements. Matplolib install under Galaxy fails otherwise.
Expand Down
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__ = '[email protected]'
__version__ = '0.2.1'
__version__ = '0.2.2'
4 changes: 3 additions & 1 deletion riboplot/riboplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@
module_errors = {}

try:
from matplotlib import pyplot as plt
import matplotlib
except ImportError as e:
module_errors['matplotlib'] = str(e)
else:
matplotlib.use('Agg')
from matplotlib import pyplot as plt
from matplotlib import gridspec
from matplotlib.font_manager import FontProperties

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@

setup(
name='riboplot',
version='0.2.1',
version='0.2.2',
description="Plot read counts of RiboSeq data from BAM format alignment files",
long_description=readme + '\n\n' + history,
author="Vimalkumar Velayudhan",
author_email='[email protected]',
url='https://github.com/vimalkumarvelayudhan/riboplot',
url='https://github.com/vimalkvn/riboplot',
packages=[
'riboplot'
],
Expand Down

0 comments on commit 3355f77

Please sign in to comment.