Skip to content

Commit

Permalink
updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
kessler-frost committed Jun 10, 2024
1 parent 60a887a commit abe648e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [UNRELEASED]

### Fixed

- Ignoring all errors when importing qelectrons instead of only `ImportError`

## [0.235.0-rc.0] - 2024-05-29

### Authors
Expand Down
4 changes: 1 addition & 3 deletions covalent/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,10 @@
from ._workflow.electron import wait # nopycln: import
from .executor.utils import get_context # nopycln: import

try:
with contextlib.suppress(Exception):
# try to load qelectron modules
from ._workflow.qelectron import qelectron # nopycln: import
from .quantum import QCluster # nopycln: import
except:
pass

__all__ = [s for s in dir() if not s.startswith("_")]

Expand Down

0 comments on commit abe648e

Please sign in to comment.