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

[DNM] Pinning ambertools version to <= 22 #289

Closed
wants to merge 9 commits into from
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.9", "3.10"]
mattwthompson marked this conversation as resolved.
Show resolved Hide resolved
latest-openff-toolkit: [true, false]
exclude:
- python-version: "3.10"
Expand Down
4 changes: 2 additions & 2 deletions devtools/conda-envs/test_env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies:

# Requirements for conversion tools
- pyyaml
- ambertools >=18.0 # contains sufficiently recent ParmEd
- ambertools =22.0
- lxml
- networkx

Expand All @@ -41,6 +41,6 @@ dependencies:
# TODO: Rework this once espaloma is on conda-forge
#
- pytorch >=1.8.0
- dgl
- dgl <1.1
- qcportal >=0.15.0
- espaloma
12 changes: 12 additions & 0 deletions openmmforcefields/tests/test_template_generators.py
Original file line number Diff line number Diff line change
Expand Up @@ -534,6 +534,10 @@ def test_parameterize(self):
for small_molecule_forcefield in self.TEMPLATE_GENERATOR.INSTALLED_FORCEFIELDS:
if "ff14sb" in small_molecule_forcefield:
continue
if "tip" in small_molecule_forcefield:
continue
if "opc" in small_molecule_forcefield:
continue
print(f'Testing {small_molecule_forcefield}')
# Create a generator that knows about a few molecules
# TODO: Should the generator also load the appropriate force field files into the ForceField object?
Expand Down Expand Up @@ -780,6 +784,10 @@ def test_energies(self):
for small_molecule_forcefield in SMIRNOFFTemplateGenerator.INSTALLED_FORCEFIELDS:
if "ff14sb" in small_molecule_forcefield:
continue
if "tip" in small_molecule_forcefield:
continue
if "opc" in small_molecule_forcefield:
continue
print(f'Testing energies for {small_molecule_forcefield}...')
# Create a generator that knows about a few molecules
# TODO: Should the generator also load the appropriate force field files into the ForceField object?
Expand Down Expand Up @@ -817,6 +825,10 @@ def test_partial_charges_are_none(self):
for small_molecule_forcefield in SMIRNOFFTemplateGenerator.INSTALLED_FORCEFIELDS:
if "ff14sb" in small_molecule_forcefield:
continue
if "tip" in small_molecule_forcefield:
continue
if "opc" in small_molecule_forcefield:
continue
print(f'Testing energies for {small_molecule_forcefield}...')
# Create a generator that knows about a few molecules
# TODO: Should the generator also load the appropriate force field files into the ForceField object?
Expand Down
Loading