Skip to content

Commit d35a4b5

Browse files
committed
MAINT: Remove openff-models from tooling
1 parent 7565e94 commit d35a4b5

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

devtools/conda-envs/beta_env.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ dependencies:
1111
- openmm >=7.6
1212
# OpenFF stack
1313
- openff-toolkit ~=0.16.4
14-
- openff-models
1514
- openff-nagl ~=0.3.7
1615
- openff-nagl-models =0.1
1716
# Optional features

devtools/conda-envs/docs_env.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ dependencies:
99
- numpy =1
1010
- pydantic =2
1111
- openff-toolkit-base ~=0.16.4
12-
- openff-models
1312
- openmm =8
1413
- mbuild
1514
- foyer =1

docs/using/plugins.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ At this point, we have created a class that can parse sections of a custom OFFXM
217217
from openff.toolkit import Topology
218218

219219
from typing import Literal, Type
220-
from openff.models.types import FloatQuantity
220+
from openff.interchange._annotations import DistanceQuantity
221221
from openff.interchange.smirnoff._nonbonded import _SMIRNOFFNonbondedCollection
222222
from openff.interchange.components.potentials import Potential
223223

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

232232
mixing_rule: str = "Buckingham"
233233

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

236236
@classmethod
237237
def allowed_parameter_handlers(cls):

0 commit comments

Comments
 (0)