From dac15d3dde80256fc4a9d917e4c0e2a1ffe7924e Mon Sep 17 00:00:00 2001 From: David Thomas <dthomas@spike.passcal.nmt.edu> Date: Mon, 25 Jun 2018 13:28:29 -0600 Subject: [PATCH] Updating version # to 2018.176 --- HISTORY.rst | 5 +++++ conda.recipe/meta.yaml | 2 +- fixhdr/__init__.py | 2 +- fixhdr/fixhdr.py | 8 +++++++- setup.cfg | 2 +- setup.py | 2 +- 6 files changed, 16 insertions(+), 5 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index fb69cdf..a1eb171 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -6,3 +6,8 @@ History ------------------ * First release on new build system. + +2018.176 (2018-06-25) +------------------- + +* Updating version numbers to 2018.176. \ No newline at end of file diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml index 2ca8a2c..4561f0b 100644 --- a/conda.recipe/meta.yaml +++ b/conda.recipe/meta.yaml @@ -1,6 +1,6 @@ package: name: fixhdr - version: 2009.175 + version: 2018.176 source: path: .. diff --git a/fixhdr/__init__.py b/fixhdr/__init__.py index e15c519..01788bd 100644 --- a/fixhdr/__init__.py +++ b/fixhdr/__init__.py @@ -4,4 +4,4 @@ __author__ = """IRIS PASSCAL""" __email__ = 'software-support@passcal.nmt.edu' -__version__ = '2009.175' +__version__ = '2018.176' diff --git a/fixhdr/fixhdr.py b/fixhdr/fixhdr.py index f93bb34..3c95061 100755 --- a/fixhdr/fixhdr.py +++ b/fixhdr/fixhdr.py @@ -239,7 +239,13 @@ # to be threads at all, and it was breaking with Tk because the functions that were the targets for the threads # weren't actually Tk/thread safe. -VERSION = "2009.175" +# +# modification +# version: 2018.176 +# author: Derick Hess +# Updated cookiecutter version, added call to main(), etc. + +VERSION = "2018.176" import Pmw from Tkinter import * diff --git a/setup.cfg b/setup.cfg index 4a9405a..2c70c72 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2009.175 +current_version = 2018.176 commit = True tag = True diff --git a/setup.py b/setup.py index 5a451ad..7c694c2 100644 --- a/setup.py +++ b/setup.py @@ -51,6 +51,6 @@ setup( packages=find_packages(include=['fixhdr']), test_suite='tests', url='https://git.passcal.nmt.edu/passoft/fixhdr', - version='2009.175', + version='2018.176', zip_safe=False, ) -- GitLab