Skip to content

Commit

Permalink
Remove extra print
Browse files Browse the repository at this point in the history
  • Loading branch information
ale94mleon committed Jan 14, 2024
1 parent c4326bd commit 64e0381
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
10 changes: 9 additions & 1 deletion docs/source/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [unreleased]

## [3.7.1] - 2024.01.14

### Fix

- Remove an unnecessary print statement.


## [3.7.0] - 2024.01.14

### Fixed
Expand Down Expand Up @@ -464,7 +471,8 @@ Print the starting date when MolDrug is called from the command line.
- Minor code cleaning.
- Better code covered during testing

[unreleased]: https://github.com/ale94mleon/MolDrug/compare/3.7.0...HEAD
[unreleased]: https://github.com/ale94mleon/MolDrug/compare/3.7.1...HEAD
[3.7.1]: https://github.com/ale94mleon/MolDrug/compare/3.7.0...3.7.1
[3.7.0]: https://github.com/ale94mleon/MolDrug/compare/3.6.1...3.7.0
[3.6.1]: https://github.com/ale94mleon/MolDrug/compare/3.6.0...3.6.1
[3.6.0]: https://github.com/ale94mleon/MolDrug/compare/3.5.0...3.6.0
Expand Down
2 changes: 1 addition & 1 deletion src/moldrug/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.7.0"
__version__ = "3.7.1"
1 change: 0 additions & 1 deletion src/moldrug/constraintconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,6 @@ def clashes_present(coords1: np.ndarray, coords2: np.ndarray, clash_distance_thr
"""
coords1_np = np.array(coords1)
coords2_np = np.array(coords2)
print(coords1_np)

# Calculate distances using NumPy broadcasting
distances = np.linalg.norm(coords1_np[:, np.newaxis, :] - coords2_np, axis=2)
Expand Down

0 comments on commit 64e0381

Please sign in to comment.