Skip to content

Commit

Permalink
0.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
CalebBell committed Jul 26, 2024
1 parent 0d5818d commit 48c6cae
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 7 deletions.
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@

### Fixed

## [0.3.0] - 2024-07-26

### Changed
- Compatibility with NumPy 2.0 and SciPy 1.14. Note this causes somewhat different results when extrapolating tabular data (Temperature and pressure dependent - temperature dependent only behaves the same)
- Fluids version dependency now >= 1.0.26
- Chemicals version dependency now >= 1.2.0
- General code cleanup and further documentation

## [0.2.26] - 2023-09-17

### Changed
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ scipy>=1.6.0
pandas
coolprop
fluids>=1.0.26
chemicals>=1.1.5
chemicals>=1.2.0
2 changes: 1 addition & 1 deletion requirements_docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ numpydoc
pint
nbsphinx
fluids>=1.0.26
chemicals>=1.1.5
chemicals>=1.2.0
IPython
ipython
numba
Expand Down
2 changes: 1 addition & 1 deletion requirements_test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ scipy
pandas
sympy
fluids>=1.0.26
chemicals>=1.1.5
chemicals>=1.2.0
pytest
pytest-cov
coveralls
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,18 +59,18 @@
name = 'thermo',
packages = ['thermo'],
license='MIT',
version = '0.2.27',
version = '0.3.0',
description = 'Chemical properties component of Chemical Engineering Design Library (ChEDL)',
author = 'Caleb Bell',
install_requires=['fluids>=1.0.26', "scipy>=1.6.0", 'pandas', 'chemicals>=1.1.5'],
install_requires=['fluids>=1.0.26', "scipy>=1.6.0", 'pandas', 'chemicals>=1.2.0'],
extras_require = {
'Coverage documentation': ['wsgiref>=0.1.2', 'coverage>=4.0.3']
},
long_description=open('README.rst').read(),
platforms=["Windows", "Linux", "Mac OS", "Unix"],
author_email = '[email protected]',
url = 'https://github.com/CalebBell/thermo',
download_url = 'https://github.com/CalebBell/thermo/tarball/0.2.27',
download_url = 'https://github.com/CalebBell/thermo/tarball/0.3.0',
keywords = ['chemical engineering', 'chemistry', 'mechanical engineering',
'thermodynamics', 'databases', 'cheminformatics', 'engineering','viscosity',
'density', 'heat capacity', 'thermal conductivity', 'surface tension',
Expand Down
2 changes: 1 addition & 1 deletion thermo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,5 +296,5 @@ def __getattr__(name):
except:
thermo_dir = ''

__version__ = '0.2.27'
__version__ = '0.3.0'

0 comments on commit 48c6cae

Please sign in to comment.