From a14148c5d2c545d0bc28ce6efb4d00f399e4c4e8 Mon Sep 17 00:00:00 2001 From: Caleb Bell Date: Sun, 27 Nov 2016 22:21:36 -0400 Subject: [PATCH] Version 0.1.58 release --- fluids/__init__.py | 2 +- fluids/atmosphere.py | 2 +- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/fluids/__init__.py b/fluids/__init__.py index 7f65ccb3..166fe840 100644 --- a/fluids/__init__.py +++ b/fluids/__init__.py @@ -92,4 +92,4 @@ __all__.extend(separator.__all__) -__version__ = '0.1.57' +__version__ = '0.1.58' diff --git a/fluids/atmosphere.py b/fluids/atmosphere.py index d97a2745..fcce91b6 100644 --- a/fluids/atmosphere.py +++ b/fluids/atmosphere.py @@ -298,7 +298,7 @@ class ATMOSPHERE_NRLMSISE00(object): Examples -------- - >>> atmosphere = ATMOSPHERE_NRLMSISE00(1E3, 45,45, 150) + >>> atmosphere = ATMOSPHERE_NRLMSISE00(1E3, 45, 45, 150) >>> atmosphere.T, atmosphere.rho (285.54408606237405, 1.1019062026405517) diff --git a/setup.py b/setup.py index 26e06a57..6c85741d 100644 --- a/setup.py +++ b/setup.py @@ -55,8 +55,8 @@ name = 'fluids', packages = ['fluids'], license='MIT', - version = '0.1.57', - download_url = 'https://github.com/CalebBell/fluids/tarball/0.1.57', + version = '0.1.58', + download_url = 'https://github.com/CalebBell/fluids/tarball/0.1.58', description = 'Fluid dynamics component of Chemical Engineering Design Library (ChEDL)', long_description=open('README.rst').read(), extras_require = {