-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump FastJet version to 3.4.0 from 3.3.4 using a patch (#122)
* Update fastjet-core to 3.4.0 with patch * fix typo * fix typo * fix typo * fix patch * final changes for update * Fix last issues * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
800f647
commit f12e4ea
Showing
5 changed files
with
24 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
Submodule fastjet-core
updated
from 017d93 to da603d
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- fastjet-core/pyinterface/fastjet.i 2022-10-25 23:22:36.000000000 +0200 | ||
+++ fastjet-core/pyinterface/fastjet_p.i 2022-10-26 16:25:20.000000000 +0200 | ||
@@ -138,7 +138,10 @@ | ||
|
||
// include FastJetError in python module | ||
%pythoncode { | ||
- from _fastjet import FastJetError | ||
+ if __package__ or "." in __name__: | ||
+ from ._fastjet import FastJetError | ||
+ else: | ||
+ from _fastjet import FastJetError | ||
} | ||
|
||
FASTJET_ERRORS_AS_PYTHON_EXCEPTIONS(fastjet) |
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