Skip to content

Commit 11f4904

Browse files
committed
fix a few details and release
1 parent ee34eca commit 11f4904

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

dephell_setuptools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from ._static import StaticReader
1010

1111

12-
__version__ = '0.1.2'
12+
__version__ = '0.2.1'
1313

1414

1515
__all__ = [

dephell_setuptools/_cmd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def content(self) -> Dict[str, Any]:
4646
env={'PYTHONPATH': str(Path(__file__).parent.parent)},
4747
)
4848
if result.returncode != 0:
49-
raise RuntimeError(result.stderr.decode().split('\n')[-1])
49+
raise RuntimeError(result.stderr.decode().strip().split('\n')[-1])
5050

5151
with open(output_json.name) as stream:
5252
content = json.load(stream)

dephell_setuptools/_constants.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
'author_email',
66
'author',
77
'classifiers',
8+
'dependency_links',
89
'description',
910
'download_url',
1011
'extras_require',

0 commit comments

Comments
 (0)