diff --git a/docs/conf.py b/docs/conf.py index 5a52f963c..23ea5bbed 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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 --------------------------------------------------- diff --git a/madminer/__version__.py b/madminer/__version__.py index 01ef12070..6cd38b746 100644 --- a/madminer/__version__.py +++ b/madminer/__version__.py @@ -1 +1 @@ -__version__ = "0.2.6" +__version__ = "0.2.7" diff --git a/madminer/core.py b/madminer/core.py index cedd3b8a7..1594231bd 100644 --- a/madminer/core.py +++ b/madminer/core.py @@ -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", diff --git a/setup.py b/setup.py index ca161a49f..ec636df51 100644 --- a/setup.py +++ b/setup.py @@ -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 = [