File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed
Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 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' ,
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' ,
Original file line number Diff line number Diff line change 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
3636from . import thermo
3737del thermo
8686import numpy as np
8787import pandas as pd
8888np .set_printoptions (suppress = False )
89- np .set_printoptions (precision = 3 )
89+ np .set_printoptions (
90+ precision = 3 ,
91+ legacy = '1.25' ,
92+ )
9093pd .options .display .float_format = '{:.3g}' .format
9194pd .set_option ('display.max_rows' , 50 )
9295pd .set_option ('display.max_columns' , 10 )
You can’t perform that action at this time.
0 commit comments