Skip to content

Commit

Permalink
fix a few details and release
Browse files Browse the repository at this point in the history
  • Loading branch information
orsinium committed Nov 14, 2019
1 parent ee34eca commit 11f4904
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dephell_setuptools/__init__.py
Expand Up @@ -9,7 +9,7 @@
from ._static import StaticReader


__version__ = '0.1.2'
__version__ = '0.2.1'


__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion dephell_setuptools/_cmd.py
Expand Up @@ -46,7 +46,7 @@ def content(self) -> Dict[str, Any]:
env={'PYTHONPATH': str(Path(__file__).parent.parent)},
)
if result.returncode != 0:
raise RuntimeError(result.stderr.decode().split('\n')[-1])
raise RuntimeError(result.stderr.decode().strip().split('\n')[-1])

with open(output_json.name) as stream:
content = json.load(stream)
Expand Down
1 change: 1 addition & 0 deletions dephell_setuptools/_constants.py
Expand Up @@ -5,6 +5,7 @@
'author_email',
'author',
'classifiers',
'dependency_links',
'description',
'download_url',
'extras_require',
Expand Down

0 comments on commit 11f4904

Please sign in to comment.