Skip to content

Commit

Permalink
Merge pull request #17 from MetaSys-LISBP/dev
Browse files Browse the repository at this point in the history
Toward v2.1.4
  • Loading branch information
pierremillard authored Aug 22, 2019
2 parents a124aeb + 4105243 commit 684b444
Show file tree
Hide file tree
Showing 5 changed files with 249 additions and 47 deletions.
Binary file modified doc/_static/isocor_GUI.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 7 additions & 3 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
# serve to show the default.

import sys, os
import datetime

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
Expand Down Expand Up @@ -47,17 +48,20 @@

# General information about the project.
project = u'IsoCor'
copyright = u'2018, Baudoin Delépine, Matthieu Guionnet, Pierre Millard'
copyright = u'{}, Baudoin Delépine, Matthieu Guionnet, Pierre Millard'.format(datetime.date.today().year)

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
import isocor # NB: the *installed* version that is used in the notebooks

full_version = isocor.__version__ # x.y.z
# The short X.Y version.
version = '2.1'
version = '.'.join(full_version.split('.')[:-1])
# The full version, including alpha/beta/rc tags.
# Do not forget to update PyPi (setup.py) version
release = '2.1.3'
release = full_version

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
3 changes: 2 additions & 1 deletion isocor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
for conveniance.
"""

__version__ = '2.1.3'
# Version number MUST be maintained here (x.y.z format)
__version__ = '2.1.4'

from isocor.mscorrectors import MetaboliteCorrectorFactory
from isocor.mscorrectors import LowResMetaboliteCorrector, HighResMetaboliteCorrector
Loading

0 comments on commit 684b444

Please sign in to comment.