From 30812b67f741326102823bbd0fa9d05109153d12 Mon Sep 17 00:00:00 2001 From: Gaspard Cereza <54723104+gaspardcereza@users.noreply.github.com> Date: Wed, 8 Dec 2021 14:31:21 -0500 Subject: [PATCH] Remove unnecessary " in version.py It made the `pip install` fail ``` (base) C:\Users\gaspa\GitHub\pymp2rage>pip install -e . Obtaining file:///C:/Users/gaspa/GitHub/pymp2rage ERROR: Command errored out with exit status 1: command: 'C:\Users\gaspa\miniconda3\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\gaspa\\GitHub\\pymp2rage\\setup.py'"'"'; __file__='"'"'C:\\Users\\gaspa\\GitHub\\pymp2rage\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\gaspa\AppData\Local\Temp\pip-pip-egg-info-idgyu01r' cwd: C:\Users\gaspa\GitHub\pymp2rage\ Complete output (8 lines): Traceback (most recent call last): File "", line 1, in File "C:\Users\gaspa\GitHub\pymp2rage\setup.py", line 8, in exec(f.read()) File "", line 23 "License :: OSI Approved :: Apache License, 2.0"", ^ SyntaxError: EOL while scanning string literal ---------------------------------------- ``` --- pymp2rage/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pymp2rage/version.py b/pymp2rage/version.py index ca72023..a9f0d29 100644 --- a/pymp2rage/version.py +++ b/pymp2rage/version.py @@ -20,7 +20,7 @@ CLASSIFIERS = ["Development Status :: 3 - Alpha", "Environment :: Console", "Intended Audience :: Science/Research", - "License :: OSI Approved :: Apache License, 2.0"", + "License :: OSI Approved :: Apache License, 2.0", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Scientific/Engineering"]