-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: remove the tfpwa dependency explicitly, as it's not on pypi
- Loading branch information
1 parent
ca66930
commit 9b33e3b
Showing
3 changed files
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
try: | ||
import tf_pwa | ||
except ImportError: | ||
raise ImportError("tf-pwa is required to use zfit-physics-tfpwa. This can currently only be installed from source, i.e. via `pip install git+https://github.com/jiangyi15/tf-pwa`") | ||
from . import loss, variables | ||
|
||
__all__ = ["loss", "variables"] |