Skip to content

Commit 64e0381

Browse files
committed
Remove extra print
1 parent c4326bd commit 64e0381

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

docs/source/CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [unreleased]
99

10+
## [3.7.1] - 2024.01.14
11+
12+
### Fix
13+
14+
- Remove an unnecessary print statement.
15+
16+
1017
## [3.7.0] - 2024.01.14
1118

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

467-
[unreleased]: https://github.com/ale94mleon/MolDrug/compare/3.7.0...HEAD
474+
[unreleased]: https://github.com/ale94mleon/MolDrug/compare/3.7.1...HEAD
475+
[3.7.1]: https://github.com/ale94mleon/MolDrug/compare/3.7.0...3.7.1
468476
[3.7.0]: https://github.com/ale94mleon/MolDrug/compare/3.6.1...3.7.0
469477
[3.6.1]: https://github.com/ale94mleon/MolDrug/compare/3.6.0...3.6.1
470478
[3.6.0]: https://github.com/ale94mleon/MolDrug/compare/3.5.0...3.6.0

src/moldrug/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.7.0"
1+
__version__ = "3.7.1"

src/moldrug/constraintconf.py

-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,6 @@ def clashes_present(coords1: np.ndarray, coords2: np.ndarray, clash_distance_thr
230230
"""
231231
coords1_np = np.array(coords1)
232232
coords2_np = np.array(coords2)
233-
print(coords1_np)
234233

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

0 commit comments

Comments
 (0)