diff --git a/Changelog.md b/Changelog.md index 3c01409..08140e4 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,13 @@ ## [Unreleased] +## [1.0.7] - 2024-11-10 + +### Changed +- Code cleanup and minor optimizations +- Fix Issue #54 https://github.com/CalebBell/fluids/issues/54 +- Fluids version dependency now >= 1.0.27 + ## [1.0.6] - 2024-07-26 ### Changed diff --git a/ht/__init__.py b/ht/__init__.py index 571a2f7..9fedf5a 100644 --- a/ht/__init__.py +++ b/ht/__init__.py @@ -121,5 +121,5 @@ def __getattr__(name): else: from . import vectorized -__version__ = '1.0.6' +__version__ = '1.0.7' diff --git a/requirements.txt b/requirements.txt index 5ca5ae0..7e434ea 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -fluids>=1.0.23 +fluids>=1.0.27 scipy>=1.6.0 diff --git a/requirements_docs.txt b/requirements_docs.txt index 7d14329..d92765b 100644 --- a/requirements_docs.txt +++ b/requirements_docs.txt @@ -1,4 +1,4 @@ -fluids>=1.0.23 +fluids>=1.0.27 numpydoc scipy pint diff --git a/requirements_test.txt b/requirements_test.txt index 3630580..dca3735 100644 --- a/requirements_test.txt +++ b/requirements_test.txt @@ -12,5 +12,5 @@ IPython sphinx wheel mpmath -fluids>=1.0.23 +fluids>=1.0.27 matplotlib diff --git a/requirements_test_multiarch.txt b/requirements_test_multiarch.txt index bd75102..af7f9ab 100644 --- a/requirements_test_multiarch.txt +++ b/requirements_test_multiarch.txt @@ -7,4 +7,4 @@ IPython sphinx wheel mpmath -fluids>=1.0.23 +fluids>=1.0.27 diff --git a/setup.py b/setup.py index ee5c5e9..58538b4 100644 --- a/setup.py +++ b/setup.py @@ -66,17 +66,17 @@ name = 'ht', packages = ['ht'], license='MIT', - version = '1.0.6', + version = '1.0.7', description = description, author = 'Caleb Bell', long_description = open('README.rst').read(), platforms=["Windows", "Linux", "Mac OS", "Unix"], author_email = 'Caleb.Andrew.Bell@gmail.com', url = 'https://github.com/CalebBell/ht', - download_url = 'https://github.com/CalebBell/ht/tarball/1.0.6', + download_url = 'https://github.com/CalebBell/ht/tarball/1.0.7', keywords = keywords, classifiers = classifiers, - install_requires=['fluids>=1.0.26', 'numpy>=1.5.0', "scipy>=1.6.0"], + install_requires=['fluids>=1.0.27', 'numpy>=1.5.0', "scipy>=1.6.0"], package_data={'ht': ['data/*']}, extras_require = { 'Coverage documentation': ['wsgiref>=0.1.2', 'coverage>=4.0.3', 'pint']