Remove unnecessary " in version.py#6
Closed
gaspardcereza wants to merge 1 commit intoGilles86:masterfrom
gaspardcereza:patch-1
Closed
Remove unnecessary " in version.py#6gaspardcereza wants to merge 1 commit intoGilles86:masterfrom gaspardcereza:patch-1
gaspardcereza wants to merge 1 commit intoGilles86:masterfrom
gaspardcereza:patch-1
Conversation
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 "<string>", line 1, in <module>
File "C:\Users\gaspa\GitHub\pymp2rage\setup.py", line 8, in <module>
exec(f.read())
File "<string>", line 23
"License :: OSI Approved :: Apache License, 2.0"",
^
SyntaxError: EOL while scanning string literal
----------------------------------------
```
Author
|
Duplicate of #5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The
pip installfails because of a " in the version.py file.