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

Release version 1.4.5 #181

Merged
merged 4 commits into from
Nov 16, 2023
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
1 change: 1 addition & 0 deletions devtools/conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ source:
build:
script: python -m pip install . --no-deps
number: 0
noarch: python

requirements:
build:
Expand Down
10 changes: 10 additions & 0 deletions docs/releasehistory.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ Releases follow the ``major.minor.micro`` scheme recommended by `PEP440 <https:/
* ``micro`` increments represent bugfix releases or improvements in documentation


1.4.5 - Corrections for alchemistry
-----------------------------------

This is a micro release of peleffy that contains corrections for alchemistry module.

Bugfixes
""""""""
- `PR #180 <https://github.com/martimunicoy/peleffy/pull/180>`_: bug fixes for alchemical topologies


1.4.4 - Corrections for alchemistry and new charge calculator
-------------------------------------------------------------

Expand Down
8 changes: 4 additions & 4 deletions peleffy/topology/alchemistry.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,12 +283,12 @@ def topology_from_lambda_set(self, lambda_set):

for bond_idx, bond in enumerate(alchemical_topology.bonds):
if bond_idx in self._exclusive_bonds:
bond.apply_lambda(["spring_constant", "eq_dist"],
bond.apply_lambda(["spring_constant", ],
lambda_set.get_lambda_for_bonded(),
reverse=False)

if bond_idx in self._non_native_bonds:
bond.apply_lambda(["spring_constant", "eq_dist"],
bond.apply_lambda(["spring_constant", ],
lambda_set.get_lambda_for_bonded(),
reverse=True)

Expand All @@ -309,12 +309,12 @@ def topology_from_lambda_set(self, lambda_set):

for angle_idx, angle in enumerate(alchemical_topology.angles):
if angle_idx in self._exclusive_angles:
angle.apply_lambda(["spring_constant", "eq_angle"],
angle.apply_lambda(["spring_constant", ],
lambda_set.get_lambda_for_bonded(),
reverse=False)

if angle_idx in self._non_native_angles:
angle.apply_lambda(["spring_constant", "eq_angle"],
angle.apply_lambda(["spring_constant", ],
lambda_set.get_lambda_for_bonded(),
reverse=True)

Expand Down
Loading