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

zstandard import bandaid #1940

Merged
merged 5 commits into from
Oct 3, 2024
Merged
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
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:
j-wags marked this conversation as resolved.
Show resolved Hide resolved
import zstandard # noqa
except ImportError:
pass
import importlib
import logging
import pathlib
Expand Down