Skip to content

Commit

Permalink
1.0.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
CalebBell committed Jul 26, 2024
1 parent 72a5fcc commit 637a2a7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## [1.0.6] - 2024-07-26

### Changed
- Compatibility with NumPy 2.0 and SciPy 1.14
- Fluids version dependency now >= 1.0.26


## [1.0.5] - 2023-06-04

Expand Down
2 changes: 1 addition & 1 deletion ht/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,5 +121,5 @@ def __getattr__(name):
else:
from . import vectorized

__version__ = '1.0.5'
__version__ = '1.0.6'

6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,17 +66,17 @@
name = 'ht',
packages = ['ht'],
license='MIT',
version = '1.0.5',
version = '1.0.6',
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.5',
download_url = 'https://github.com/CalebBell/ht/tarball/1.0.6',
keywords = keywords,
classifiers = classifiers,
install_requires=['fluids>=1.0.24', 'numpy>=1.5.0', "scipy>=1.6.0"],
install_requires=['fluids>=1.0.26', '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']
Expand Down

0 comments on commit 637a2a7

Please sign in to comment.