Skip to content

Commit

Permalink
MAINT: Remove openff-models from tooling
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwthompson committed Aug 27, 2024
1 parent 7565e94 commit d35a4b5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion devtools/conda-envs/beta_env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ dependencies:
- openmm >=7.6
# OpenFF stack
- openff-toolkit ~=0.16.4
- openff-models
- openff-nagl ~=0.3.7
- openff-nagl-models =0.1
# Optional features
Expand Down
1 change: 0 additions & 1 deletion devtools/conda-envs/docs_env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ dependencies:
- numpy =1
- pydantic =2
- openff-toolkit-base ~=0.16.4
- openff-models
- openmm =8
- mbuild
- foyer =1
Expand Down
4 changes: 2 additions & 2 deletions docs/using/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ At this point, we have created a class that can parse sections of a custom OFFXM
from openff.toolkit import Topology

from typing import Literal, Type
from openff.models.types import FloatQuantity
from openff.interchange._annotations import DistanceQuantity
from openff.interchange.smirnoff._nonbonded import _SMIRNOFFNonbondedCollection
from openff.interchange.components.potentials import Potential

Expand All @@ -231,7 +231,7 @@ class SMIRNOFFBuckinghamCollection(_SMIRNOFFNonbondedCollection):

mixing_rule: str = "Buckingham"

switch_width: FloatQuantity["angstrom"] = unit.Quantity(1.0, unit.angstrom)
switch_width: DistanceQuantity = unit.Quantity(1.0, unit.angstrom)

@classmethod
def allowed_parameter_handlers(cls):
Expand Down

0 comments on commit d35a4b5

Please sign in to comment.