Skip to content

Commit

Permalink
Bump to 3.4.0.5 (#179)
Browse files Browse the repository at this point in the history
* Update version.py

* Update _generalevent.py

* Update _multievent.py

* Update _singleevent.py
  • Loading branch information
jmduarte committed Mar 7, 2023
1 parent 752499d commit 5cdd16f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/fastjet/_generalevent.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,8 @@ def _warn_for_exclusive(self):
):
warnings.formatwarning = fastjet.formatwarning
warnings.warn(
"dcut and exclusive jets for jet-finders other than kt, C/A or genkt with p>=0 should be interpreted with care."
"dcut and exclusive jets for jet-finders other than kt, C/A or genkt with p>=0 should be interpreted with care.",
stacklevel=2,
)
return

Expand Down
3 changes: 2 additions & 1 deletion src/fastjet/_multievent.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ def _warn_for_exclusive(self):
):
warnings.formatwarning = fastjet.formatwarning
warnings.warn(
"dcut and exclusive jets for jet-finders other than kt, C/A or genkt with p>=0 should be interpreted with care."
"dcut and exclusive jets for jet-finders other than kt, C/A or genkt with p>=0 should be interpreted with care.",
stacklevel=2,
)
return

Expand Down
3 changes: 2 additions & 1 deletion src/fastjet/_singleevent.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ def _warn_for_exclusive(self):
):
warnings.formatwarning = fastjet.formatwarning
warnings.warn(
"dcut and exclusive jets for jet-finders other than kt, C/A or genkt with p>=0 should be interpreted with care."
"dcut and exclusive jets for jet-finders other than kt, C/A or genkt with p>=0 should be interpreted with care.",
stacklevel=2,
)
return

Expand Down
2 changes: 1 addition & 1 deletion src/fastjet/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import re

__version__ = "3.4.0.4"
__version__ = "3.4.0.5"
version = __version__
version_info = tuple(re.split(r"[-\.]", __version__))

Expand Down

0 comments on commit 5cdd16f

Please sign in to comment.