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

For the next release; we need updated versions of things #83

Merged
merged 3 commits into from
Oct 17, 2022
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
2 changes: 1 addition & 1 deletion src/fastjet/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def join(*argv):
if len(argv) == 4:
return fastjet._swig.join(argv[0], argv[1], argv[2], argv[3])
if len(argv) > 4:
raise ValueError("Length exceeded")
raise ValueError("Length exceeded") from None


def dot_product(a, b):
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.3.4.0rc9"
__version__ = "3.3.4.0rc10"
version = __version__
version_info = tuple(re.split(r"[-\.]", __version__))

Expand Down