From da3ee8864a645a91ef11a9925d0a8b1caa0e3a0f Mon Sep 17 00:00:00 2001 From: Anthony Scemama Date: Sun, 6 Dec 2020 16:59:38 +0100 Subject: [PATCH] Version 2.0.4 --- pip/setup.py | 4 ++-- src/irpf90.py | 2 -- src/variables.py | 1 - src/version.py | 2 +- 4 files changed, 3 insertions(+), 6 deletions(-) diff --git a/pip/setup.py b/pip/setup.py index 631a598..b9aad57 100644 --- a/pip/setup.py +++ b/pip/setup.py @@ -7,7 +7,7 @@ with open("README.md", "r") as fh: setuptools.setup( name = 'irpf90', - version = '2.0.3', + version = '2.0.4', scripts = ["irpf90", "irpman", "irpf90_indent"], author = 'Anthony Scemama', author_email = 'scemama@irsamc.ups-tlse.fr', @@ -15,7 +15,7 @@ setuptools.setup( long_description=long_description, long_description_content_type="text/markdown", url="https://irpf90.ups-tlse.fr", - download_url = 'https://gitlab.com/scemama/irpf90/-/archive/v2.0.3/irpf90-v2.0.3.tar.gz', + download_url = 'https://gitlab.com/scemama/irpf90/-/archive/v2.0.4/irpf90-v2.0.4.tar.gz', packages=setuptools.find_packages(), classifiers=[ "Programming Language :: Python :: 3", diff --git a/src/irpf90.py b/src/irpf90.py index 1299c69..533288d 100644 --- a/src/irpf90.py +++ b/src/irpf90.py @@ -38,8 +38,6 @@ from command_line import command_line def main(): -# vim.install() - if command_line.do_help: command_line.usage() diff --git a/src/variables.py b/src/variables.py index 083eb8d..ef95353 100644 --- a/src/variables.py +++ b/src/variables.py @@ -55,7 +55,6 @@ def create_variables(): print("- ", v.line.filename[0], " line ", v.line.i) print("- ", result[v.name].line.filename[0], " line ", result[v.name].line.i) print("Choosing first version") - print (v.name) if v.name in forbidden_names: error.fail(line,"A variable can't be named %s"%(v.name)) result[v.name] = v diff --git a/src/version.py b/src/version.py index 079fe43..52a9c1d 100644 --- a/src/version.py +++ b/src/version.py @@ -1 +1 @@ -version = "2.0.3" +version = "2.0.4"