Skip to content

Commit

Permalink
Applying review suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
ijpulidos committed Oct 13, 2023
1 parent 1fd47dd commit 81e1b80
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,18 @@ defaults:
jobs:
tests:
runs-on: ${{ matrix.os }}-latest
name: "💻-${{matrix.os }} 🐍-${{ matrix.python-version }} 🗃️${{ matrix.pydantic-version }}"
name: "💻-${{matrix.os }} 🐍-${{ matrix.python-version }}"
strategy:
fail-fast: false
matrix:
os: ["ubuntu"]
pydantic-version: [">1"]
python-version:
- "3.9"
- "3.10"
- "3.11"
include:
- os: "macos"
python-version: "3.11"
pydantic-version: ">1"

steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions devtools/conda-envs/test_env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ channels:
- defaults
dependencies:
# Base depends
- gufe
- openfe # TODO: Remove once we don't depend on openfe
- python
- pip
Expand Down
12 changes: 6 additions & 6 deletions feflow/utils/hybrid_topology.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ def __init__(self,
super().__init__(old_system, old_positions, old_topology,
new_system, new_positions, new_topology,
old_to_new_atom_map, old_to_new_core_atom_map,
use_dispersion_correction=False,
softcore_alpha=0.5,
softcore_LJ_v2=True,
softcore_LJ_v2_alpha=0.85,
interpolate_old_and_new_14s=False,
flatten_torsions=False,
use_dispersion_correction=use_dispersion_correction,
softcore_alpha=softcore_alpha,
softcore_LJ_v2=softcore_LJ_v2,
softcore_LJ_v2_alpha=softcore_LJ_v2_alpha,
interpolate_old_and_new_14s=interpolate_old_and_new_14s,
flatten_torsions=flatten_torsions,
**kwargs)

# TODO: We need to refactor for the init to use these properties and have an attribute with the indices
Expand Down

0 comments on commit 81e1b80

Please sign in to comment.