From c771f2b1415cfeb7c24072fdbd7aab8eccfbfd63 Mon Sep 17 00:00:00 2001 From: Caleb Bell Date: Sun, 18 Jun 2017 09:10:16 -0300 Subject: [PATCH] Release 0.1.34; officially drop support to Python 2.6 due to Pandas dependency probably never working --- setup.py | 5 ++--- thermo/__init__.py | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index c4e6bc23..38093e9a 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,6 @@ 'Operating System :: Unix', 'Programming Language :: Python', 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', @@ -53,7 +52,7 @@ name = 'thermo', packages = ['thermo'], license='MIT', - version = '0.1.33', + version = '0.1.34', description = 'Chemical properties component of Chemical Engineering Design Library (ChEDL)', author = 'Caleb Bell', install_requires=['fluids', 'scipy', 'pandas', 'coolprop'], @@ -64,7 +63,7 @@ platforms=["Windows", "Linux", "Mac OS", "Unix"], author_email = 'Caleb.Andrew.Bell@gmail.com', url = 'https://github.com/CalebBell/thermo', - download_url = 'https://github.com/CalebBell/thermo/tarball/0.1.33', + download_url = 'https://github.com/CalebBell/thermo/tarball/0.1.34', keywords = ['chemical engineering', 'chemistry', 'mechanical engineering', 'thermodynamics', 'databases', 'cheminformatics', 'engineering','viscosity', 'density', 'heat capacity', 'thermal conductivity', 'surface tension', diff --git a/thermo/__init__.py b/thermo/__init__.py index 8e3951b7..43d79c47 100644 --- a/thermo/__init__.py +++ b/thermo/__init__.py @@ -139,4 +139,4 @@ __all__.extend(volume.__all__) -__version__ = '0.1.33' +__version__ = '0.1.34'