From c2e9d3c31bf3c05f9975ea4a09eb5130007f5b5a Mon Sep 17 00:00:00 2001 From: Caleb Bell Date: Sun, 10 Nov 2024 14:59:35 -0700 Subject: [PATCH] 0.4.0 --- changelog.md | 11 +++++++++++ requirements.txt | 4 ++-- requirements_docs.txt | 2 +- requirements_test.txt | 4 ++-- requirements_test_multiarch.txt | 4 ++-- setup.py | 2 +- 6 files changed, 19 insertions(+), 8 deletions(-) diff --git a/changelog.md b/changelog.md index f8e04420..5d9a8748 100644 --- a/changelog.md +++ b/changelog.md @@ -10,6 +10,17 @@ ### Fixed + +## [0.4.0] - 2024-11-10 + +### Changed +- Fluids version dependency now >= 1.0.27 +- Chemicals version dependency now >= 1.3.0 +- General code cleanup and further documentation +- Add Flory Huggins and Hansen activity coefficient models +- Further progress on removing legacy scipy interp1d method +- Clean up in code of vapor pressure extrapolation + ## [0.3.0] - 2024-07-26 ### Changed diff --git a/requirements.txt b/requirements.txt index 54255994..c201f300 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,5 +2,5 @@ numpy scipy>=1.6.0 pandas coolprop -fluids>=1.0.26 -chemicals>=1.2.0 +fluids>=1.0.27 +chemicals>=1.3.0 diff --git a/requirements_docs.txt b/requirements_docs.txt index 25f9222c..800df773 100644 --- a/requirements_docs.txt +++ b/requirements_docs.txt @@ -3,7 +3,7 @@ scipy numpydoc pint nbsphinx -fluids>=1.0.26 +fluids>=1.0.27 chemicals>=1.2.0 IPython ipython diff --git a/requirements_test.txt b/requirements_test.txt index 1f5e9418..f55f3037 100644 --- a/requirements_test.txt +++ b/requirements_test.txt @@ -2,8 +2,8 @@ numpy scipy pandas sympy -fluids>=1.0.26 -chemicals>=1.2.0 +fluids>=1.0.27 +chemicals>=1.3.0 pytest pytest-cov coveralls diff --git a/requirements_test_multiarch.txt b/requirements_test_multiarch.txt index a0dfd80f..b31992d7 100644 --- a/requirements_test_multiarch.txt +++ b/requirements_test_multiarch.txt @@ -1,6 +1,6 @@ sympy -fluids>=1.0.26 -chemicals>=1.2.0 +fluids>=1.0.27 +chemicals>=1.3.0 pytest pint IPython diff --git a/setup.py b/setup.py index c634dc67..4b56e7ed 100644 --- a/setup.py +++ b/setup.py @@ -62,7 +62,7 @@ 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.2.0'], + install_requires=['fluids>=1.0.27', "scipy>=1.6.0", 'pandas', 'chemicals>=1.3.0'], extras_require = { 'Coverage documentation': ['wsgiref>=0.1.2', 'coverage>=4.0.3'] },