diff --git a/pip/setup.py b/pip/setup.py index a943623..5b875a6 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 = '1.7.7', + version = '2.0.1', scripts = ["irpf90", "irpman", "irpf90_indent"], author = 'Anthony Scemama', author_email = 'scemama@irsamc.ups-tlse.fr', @@ -15,10 +15,10 @@ 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/v1.7.6/irpf90-v1.7.6.tar.gz', + download_url = 'https://gitlab.com/scemama/irpf90/-/archive/v2.0.1/irpf90-v2.0.1.tar.gz', packages=setuptools.find_packages(), classifiers=[ - "Programming Language :: Python :: 2", + "Programming Language :: Python :: 3", "Programming Language :: Fortran", "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", "Operating System :: POSIX :: Linux", diff --git a/src/create_man.py b/src/create_man.py index 77d6086..0c91116 100644 --- a/src/create_man.py +++ b/src/create_man.py @@ -309,7 +309,6 @@ def run(): pid2 = os.fork() if pid2 == 0: - # Create vim tags tags = [] l = list(variables.keys()) file = open("irpf90_entities","w") diff --git a/src/irpf90.py b/src/irpf90.py index b6f2d3c..f8ce2ea 100644 --- a/src/irpf90.py +++ b/src/irpf90.py @@ -25,7 +25,6 @@ # scemama@irsamc.ups-tlse.fr -import os,sys try: wd = os.path.abspath(os.path.dirname(__file__)) @@ -34,6 +33,7 @@ except: pass import vim +import os,sys from command_line import command_line def main():