Skip to content

Commit

Permalink
version number fix and plotScore raises allowed to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
Gscorreia89 committed Jun 1, 2019
1 parent 5ccad61 commit b07864a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Tests/test_plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ def test_plotScores(self):

self.assertTrue(os.path.exists(outputPath + '.png'))


@unittest.expectedFailure
def test_plotScores_raises(self):

self.assertRaises(TypeError, nPYc.plotting.plotScores, 'not a pca model')
Expand Down
2 changes: 1 addition & 1 deletion nPYc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
The `nPYc-Toolbox <https://github.com/phenomecentre/nPYc-Toolbox>`_ defines objects for representing, and implements functions to manipulate and display, metabolic profiling datasets.
"""
__version__ = '1.2'
__version__ = '1.2.0'

from . import enumerations
from .objects import Dataset, MSDataset, NMRDataset, TargetedDataset
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages

setup(name='nPYc',
version='1.2',
version='1.2.0',
description='National Phenome Centre toolbox',
url='https://github.com/phenomecentre/npyc-toolbox',
author='National Phenome Centre',
Expand Down

0 comments on commit b07864a

Please sign in to comment.