Skip to content

Commit

Permalink
Merge pull request #215 from johannbrehmer/develop
Browse files Browse the repository at this point in the history
Last changes for v0.2.1
  • Loading branch information
johannbrehmer committed Jan 17, 2019
2 parents a529195 + 1d225e9 commit 8b201b9
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 11 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
author = 'Johann Brehmer, Felix Kling, and Kyle Cranmer'

# The short X.Y version
version = '0.2.0'
version = '0.2.1'
# The full version, including alpha/beta/rc tags
release = '0.2.0'
release = '0.2.1'


# -- General configuration ---------------------------------------------------
Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion madminer/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.0"
__version__ = "0.2.1"
2 changes: 1 addition & 1 deletion madminer/utils/interfaces/lhe.py
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ def _smear_variable(true_value, resolutions, id):

return true_value + np.random.normal(0.0, res, 1)

except TypeError, KeyError:
except (TypeError, KeyError):
return true_value


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
EMAIL = 'johann.brehmer@nyu.edu'
AUTHOR = 'Johann Brehmer, Felix Kling, Kyle Cranmer'
REQUIRES_PYTHON = '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4'
VERSION = '0.2.0'
VERSION = '0.2.1'

# What packages are required for this module to be executed?
REQUIRED = [
Expand Down

0 comments on commit 8b201b9

Please sign in to comment.