Skip to content

Commit

Permalink
1.0.7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
CalebBell committed Nov 10, 2024
1 parent 5025893 commit 2999671
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 8 deletions.
7 changes: 7 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.6'
__version__ = '1.0.7'

2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
fluids>=1.0.23
fluids>=1.0.27
scipy>=1.6.0
2 changes: 1 addition & 1 deletion requirements_docs.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
fluids>=1.0.23
fluids>=1.0.27
numpydoc
scipy
pint
Expand Down
2 changes: 1 addition & 1 deletion requirements_test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ IPython
sphinx
wheel
mpmath
fluids>=1.0.23
fluids>=1.0.27
matplotlib
2 changes: 1 addition & 1 deletion requirements_test_multiarch.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ IPython
sphinx
wheel
mpmath
fluids>=1.0.23
fluids>=1.0.27
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.6',
version = '1.0.7',
description = description,
author = 'Caleb Bell',
long_description = open('README.rst').read(),
platforms=["Windows", "Linux", "Mac OS", "Unix"],
author_email = '[email protected]',
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']
Expand Down

0 comments on commit 2999671

Please sign in to comment.