Skip to content

Commit

Permalink
Merge pull request #271 from johannbrehmer/develop
Browse files Browse the repository at this point in the history
Last changes for v0.2.7
  • Loading branch information
johannbrehmer committed Feb 21, 2019
2 parents 5199eba + 5509630 commit 9c90999
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 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, Irina Espejo, and Kyle Cranmer'

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


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion madminer/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.6"
__version__ = "0.2.7"
2 changes: 1 addition & 1 deletion madminer/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@ def run_multiple(
expected_event_files = [
mg_process_directory + "/Events/run_{:02d}".format(i + 1) for i in range(n_runs_total)
]
expected_event_files = "/n".join(expected_event_files)
expected_event_files = "\n".join(expected_event_files)
logger.info(
"Finished running MadGraph! Please check that events were succesfully generated in the following "
"folders:\n\n%s\n\n",
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, Irina Espejo, Kyle Cranmer'
REQUIRES_PYTHON = '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4'
VERSION = '0.2.6'
VERSION = '0.2.7'

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

0 comments on commit 9c90999

Please sign in to comment.