Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix Quantity import #240

Merged
merged 2 commits into from
May 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## v1.6.4
* (#240) fix Pint Quantity import error by using more recent version.

## v1.6.3
* (#237) Add tests for MongoDB emitter and fix related bugs
* (#238) apply `global_time_precision` to the `emit_time`
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup


VERSION = '1.6.3'
VERSION = '1.6.4'


if __name__ == '__main__':
Expand Down Expand Up @@ -54,7 +54,7 @@
'matplotlib>=3.5.1',
'networkx>=2.6.3',
'numpy>=1.22.1',
'Pint>=0.18',
'Pint>=0.23',
'pymongo>=4.0.1',
'scipy>=1.7.3',
'pytest>=6.2.5',
Expand Down
Loading