Skip to content

Commit

Permalink
fix for pint bug
Browse files Browse the repository at this point in the history
  • Loading branch information
stefdoerr committed Nov 7, 2024
1 parent 3ec9ac1 commit 7a1920a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion htmd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
if (not hasattr(main, "__file__")) and (
(not os.path.isfile(reg_file))
or os.getenv("LICENCE_ACCEPTED") == "YES"
or os.getenv("TRAVIS_REPO_SLUG")
or os.getenv("CI")
):
print(
"\nCopyright by Acellera Ltd. By executing you are accepting the License. In order to register, "
Expand Down
3 changes: 2 additions & 1 deletion package/htmd/DEPENDENCIES
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ scikit-learn >=1.3.2
nglview >=3.1.2
ipywidgets
pandas >=1.1.2
pint >=0.21
pint =0.24.3
flexparser <4 # Fix for pint bug https://github.com/hgrecco/pint/issues/2074 Remove once fixed and un-hardcode pint version
acemd >=3.7.1
ambertools >=22
matplotlib >=3.7.3
Expand Down
3 changes: 2 additions & 1 deletion package/htmd/DEPENDENCIES_MAC
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ scikit-learn >=1.3.2
nglview >=3.1.2
ipywidgets
pandas >=1.1.2
pint >=0.21
pint =0.24.3
flexparser <4 # Fix for pint bug https://github.com/hgrecco/pint/issues/2074 Remove once fixed and un-hardcode pint version
# acemd >=3.7.1
ambertools >=22
matplotlib >=3.7.3
Expand Down
3 changes: 2 additions & 1 deletion package/htmd/DEPENDENCIES_WIN
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ scikit-learn >=1.3.2
nglview >=3.1.2
ipywidgets
pandas >=1.1.2
pint >=0.21
pint =0.24.3
flexparser <4 # Fix for pint bug https://github.com/hgrecco/pint/issues/2074 Remove once fixed and un-hardcode pint version
# acemd >=3.7.1
# ambertools >=22
matplotlib >=3.7.3
Expand Down

0 comments on commit 7a1920a

Please sign in to comment.