From da8012166b32634ad2e629ac0156b6733a4d9294 Mon Sep 17 00:00:00 2001 From: TJKessler Date: Sun, 8 Jul 2018 14:57:14 -0400 Subject: [PATCH] Update to version number --- ecnet/__init__.py | 2 +- ecnet/data_utils.py | 2 +- ecnet/error_utils.py | 2 +- ecnet/model.py | 2 +- ecnet/server.py | 2 +- setup.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ecnet/__init__.py b/ecnet/__init__.py index de826da..4aa72cc 100644 --- a/ecnet/__init__.py +++ b/ecnet/__init__.py @@ -3,4 +3,4 @@ import ecnet.error_utils import ecnet.model import ecnet.limit_parameters -__version__ = '1.4.3' +__version__ = '1.4.3.1' diff --git a/ecnet/data_utils.py b/ecnet/data_utils.py index 78397b2..46f2103 100644 --- a/ecnet/data_utils.py +++ b/ecnet/data_utils.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # # ecnet/data_utils.py -# v.1.4.3 +# v.1.4.3.1 # Developed in 2018 by Travis Kessler # # This program contains the "DataFrame" class, and functions for processing/importing/outputting diff --git a/ecnet/error_utils.py b/ecnet/error_utils.py index 29b5a3e..b69bb4e 100644 --- a/ecnet/error_utils.py +++ b/ecnet/error_utils.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # # ecnet/error_utils.py -# v.1.4.3 +# v.1.4.3.1 # Developed in 2018 by Travis Kessler # # This program contains functions for error calculations diff --git a/ecnet/model.py b/ecnet/model.py index 6f045b0..77dc2af 100644 --- a/ecnet/model.py +++ b/ecnet/model.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # # ecnet/error_utils.py -# v.1.4.3 +# v.1.4.3.1 # Developed in 2018 by Travis Kessler # # This program contains functions necessary creating, training, saving, and reusing neural network models diff --git a/ecnet/server.py b/ecnet/server.py index 82ae985..48818dd 100644 --- a/ecnet/server.py +++ b/ecnet/server.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # # ecnet/server.py -# v.1.4.3 +# v.1.4.3.1 # Developed in 2018 by Travis Kessler # # This file contains the "Server" class, which handles ECNet project creation, diff --git a/setup.py b/setup.py index a8428d7..3e2772c 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup setup(name = 'ecnet', -version = "1.4.3", +version = "1.4.3.1", description = 'UMass Lowell Energy and Combustion Research Laboratory Neural Network Software', url = 'http://github.com/tjkessler/ecnet', author = 'Travis Kessler, Hernan Gelaf-Romer, Sanskriti Sharma',