Skip to content

Commit

Permalink
Release 0.1.77 (one bug fix in units, one fewer file on pypi)
Browse files Browse the repository at this point in the history
  • Loading branch information
CalebBell committed Dec 14, 2019
1 parent 26beda7 commit 0333635
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ global-exclude __pycache__
global-exclude *.py[co]
global-exclude *.coverage
global-exclude *.so
global-exclude *.ipynb_checkpoints
2 changes: 1 addition & 1 deletion fluids/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
__all__.extend(jet_pump.__all__)


__version__ = '0.1.76'
__version__ = '0.1.77'

fluids_dir = os.path.dirname(__file__)
fluids_data_dir = os.path.join(fluids_dir, 'data')
Expand Down
2 changes: 1 addition & 1 deletion fluids/units.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def func_args(func):
method.
'''
try:
return tuple(inspect.signature(func).parameters)
return tuple(inspect.getargspec(func).args)
except:
return tuple(inspect.getfullargspec(func).args)

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@
name='fluids',
packages=['fluids'],
license='MIT',
version='0.1.76',
download_url='https://github.com/CalebBell/fluids/tarball/0.1.76',
version='0.1.77',
download_url='https://github.com/CalebBell/fluids/tarball/0.1.77',
description=description,
long_description=open('README.rst').read(),
install_requires=["numpy>=1.5.0", "scipy>=0.9.0"],
Expand Down

0 comments on commit 0333635

Please sign in to comment.