From 20f5b15657731c7385b061567181e9573467060e Mon Sep 17 00:00:00 2001 From: Michael James Date: Fri, 9 Mar 2018 09:51:54 -0700 Subject: [PATCH] 0.9.12 ready --- docs/source/conf.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 52793e8a..8d61aad0 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -65,7 +65,7 @@ # built documents. # # The short X.Y version. -version = '0.9.11' +version = '0.9.12' # The full version, including alpha/beta/rc tags. # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/setup.py b/setup.py index b213e569..be56f8a3 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ if sys.version_info < (3, 4): dependencies.append('enum34') -ver="0.9.11" +ver="0.9.12" setup( name='python-awips', @@ -19,7 +19,7 @@ packages=find_packages(exclude='data'), license='BSD', url='http://python-awips.readthedocs.io', - download_url='https://github.com/Unidata/python-awips/archive/v{}.tar.gz'.format(ver), + download_url='https://github.com/Unidata/python-awips/archive/{}.tar.gz'.format(ver), author='Unidata', author_email='mjames@ucar.edu', install_requires=dependencies,