diff --git a/.gitignore b/.gitignore index 0d61abd..9f741f3 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ MANIFEST doc/_build doc/modules/generated *.DS_Store +build/ diff --git a/align/__init__.py b/align/__init__.py index 1aa3399..2731462 100644 --- a/align/__init__.py +++ b/align/__init__.py @@ -1,4 +1,4 @@ from .prepare_transcripts import * from .calculate_alignment import * from . import datasets -__version__ = "0.0.10" +__version__ = "0.0.11" diff --git a/doc/conf.py b/doc/conf.py index 92ea75d..46a223b 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -60,7 +60,7 @@ # The short X.Y version. version = '0.0' # The full version, including alpha/beta/rc tags. -release = '0.0.10' +release = '0.0.11' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 4623187..90234dc 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ DESCRIPTION = 'Analyzing Linguistic Interaction with Generalizable techNiques' MAINTAINER = 'N. Duran, A. Paxton, & R. Fusaroli' MAINTAINER_EMAIL = 'paxton.alexandra@gmail.com' -VERSION = '0.0.10' +VERSION = '0.0.11' # Specify minimum versions for scipy and numpy SCIPY_MIN_VERSION = '1.3.1'