diff --git a/copulas/__init__.py b/copulas/__init__.py index ec84e36f..74a57dc1 100644 --- a/copulas/__init__.py +++ b/copulas/__init__.py @@ -4,7 +4,7 @@ __author__ = 'DataCebo, Inc.' __email__ = 'info@sdv.dev' -__version__ = '0.9.2' +__version__ = '0.9.3.dev0' import contextlib import importlib diff --git a/setup.cfg b/setup.cfg index 4ba68841..a45c9355 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.2 +current_version = 0.9.3.dev0 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+)(?P\d+))? diff --git a/setup.py b/setup.py index 57de6c36..f33e78b0 100644 --- a/setup.py +++ b/setup.py @@ -136,6 +136,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/Copulas', - version='0.9.2', + version='0.9.3.dev0', zip_safe=False, )