mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 00:14:41 +01:00
remove logo printing from setup.py --name
it serves no higher purpose and breaks usage in pipsi also it wouldn't happen for wheels
This commit is contained in:
parent
ab19fa6ec1
commit
cead30bf2f
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
@ -58,7 +58,8 @@ def main():
|
|||
if sys.version_info[0] < 3:
|
||||
sys.exit('xonsh currently requires Python 3.4+')
|
||||
try:
|
||||
print(logo)
|
||||
if '--name' not in sys.argv:
|
||||
print(logo)
|
||||
except UnicodeEncodeError:
|
||||
pass
|
||||
with open(os.path.join(os.path.dirname(__file__), 'README.rst'), 'r') as f:
|
||||
|
@ -132,4 +133,3 @@ logo = """
|
|||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue