From 054e6c30357ae5b72fa0caebdbbb9f8d42d35d39 Mon Sep 17 00:00:00 2001 From: Javier Vegas-Regidor Date: Tue, 4 Jun 2019 10:13:38 +0200 Subject: [PATCH 1/3] Update VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index d4c4b54b..0c6173b5 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -3.0.1 +3.1.0 -- GitLab From 4ede580aa06a4632d2478dcb9d387739410f75d8 Mon Sep 17 00:00:00 2001 From: Javier Vegas-Regidor Date: Tue, 4 Jun 2019 10:14:37 +0200 Subject: [PATCH 2/3] Update conf.py to new version number --- doc/source/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 4d4b9935..4fe7782d 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -63,9 +63,9 @@ copyright = u'2018, BSC-CNS Earth Sciences Department' # built documents.source ~/vi # # The short X.Y version. -version = '3.0' +version = '3.1' # The full version, including alpha/beta/rc tags. -release = '3.0.1' +release = '3.1.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. -- GitLab From 8616ff6eca0a179d65adf7da5a1cf28c85e1d711 Mon Sep 17 00:00:00 2001 From: Javier Vegas-Regidor Date: Tue, 4 Jun 2019 14:28:18 +0200 Subject: [PATCH 3/3] Remove ugly hack --- bin/earthdiags | 4 ---- 1 file changed, 4 deletions(-) diff --git a/bin/earthdiags b/bin/earthdiags index 200086ee..99a4a377 100644 --- a/bin/earthdiags +++ b/bin/earthdiags @@ -5,10 +5,6 @@ import os import sys -scriptdir = os.path.abspath(os.path.dirname(sys.argv[0])) -assert sys.path[0] == scriptdir -sys.path[0] = os.path.normpath(os.path.join(scriptdir, os.pardir)) - # noinspection PyUnresolvedReferences,PyPep8 from earthdiagnostics.earthdiags import EarthDiags -- GitLab