Skip to content

Commit d0b7d1e

Browse files
committed
0.52.18 release; update dependencies
1 parent 5090706 commit d0b7d1e

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
name='thermosteam',
1212
packages=['thermosteam'],
1313
license='MIT',
14-
version='0.52.17',
14+
version='0.52.18',
1515
description="BioSTEAM's Premier Thermodynamic Engine",
1616
long_description=open('README.rst', encoding='utf-8').read(),
1717
author='Yoel Cortes-Pena',
18-
install_requires=['numpy==1.26.4',
19-
'pint==0.24.4',
18+
install_requires=['numpy>=2.3.5',
19+
'pint>=0.25.2',
2020
'scipy>=1.15.2',
2121
'thermo>=0.6.0',
2222
'IPython>=7.9.0',
@@ -26,7 +26,7 @@
2626
'xlrd>=1.2.0',
2727
'openpyxl>=3.0.0',
2828
'flexsolve>=0.5.9',
29-
'numba==0.62.1',
29+
'numba>=0.62.1',
3030
'coolprop',
3131
'imageio',
3232
'pydot',

thermosteam/__init__.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
# update_module(chemicals, numba)
3232
# use_numba_chemicals()
3333
# del use_numba_chemicals
34-
__version__ = "0.52.17"
34+
__version__ = "0.52.18"
3535

3636
from . import thermo
3737
del thermo
@@ -86,7 +86,10 @@
8686
import numpy as np
8787
import pandas as pd
8888
np.set_printoptions(suppress=False)
89-
np.set_printoptions(precision=3)
89+
np.set_printoptions(
90+
precision=3,
91+
legacy='1.25',
92+
)
9093
pd.options.display.float_format = '{:.3g}'.format
9194
pd.set_option('display.max_rows', 50)
9295
pd.set_option('display.max_columns', 10)

0 commit comments

Comments
 (0)