Skip to content

Commit

Permalink
zstandard import bandaid (#1940)
Browse files Browse the repository at this point in the history
* `zstandard` import bandaid

* Update openff/toolkit/utils/openeye_wrapper.py

Co-authored-by: Jeff Wagner <[email protected]>

* Update openff/toolkit/utils/openeye_wrapper.py

* Update release history

---------

Co-authored-by: Jeff Wagner <[email protected]>
  • Loading branch information
mattwthompson and j-wags authored Oct 3, 2024
1 parent 58b0688 commit 21536cc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/releasehistory.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,16 @@ Releases follow the `major.minor.micro` scheme recommended by [PEP440](https://w
* `minor` increments add features but do not break API compatibility
* `micro` increments represent bugfix releases or improvements in documentation

## Current development
## 0.16.5

### Improved documentation and warnings
- [PR #1939](https://github.com/openforcefield/openff-toolkit/pull/1939): Resolves [#1587](https://github.com/openforcefield/openff-toolkit/pull/1587) by emitting a warning when from_openeye or from_rdkit try to load a molecule with multiple disconnected components.
- [PR #1934](https://github.com/openforcefield/openff-toolkit/pull/1934): Fold the Toolkit FAQ into the new org-level FAQ: <https://docs.openforcefield.org/faq>

### Miscellaneous

- [PR #1940](https://github.com/openforcefield/openff-toolkit/pull/1940): Fixes an esoteric issue in which optional upstream packages resulted in import errors.

## 0.16.4

### Bugfixes
Expand Down
5 changes: 5 additions & 0 deletions openff/toolkit/utils/openeye_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
__all__ = ("OpenEyeToolkitWrapper",)


# See https://github.com/conda-forge/openff-toolkit-feedstock/issues/86
try:
import zstandard # noqa
except ImportError:
pass
import importlib
import logging
import pathlib
Expand Down

0 comments on commit 21536cc

Please sign in to comment.