mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 00:14:41 +01:00
minor updates
This commit is contained in:
parent
c2673011a0
commit
5843d72a31
3 changed files with 6 additions and 6 deletions
|
@ -1,3 +0,0 @@
|
|||
which python
|
||||
python -V
|
||||
python setup.py install
|
|
@ -6,8 +6,8 @@ source:
|
|||
fn: xonsh.tar.gz
|
||||
url: https://github.com/scopatz/xonsh/archive/master.tar.gz
|
||||
|
||||
#build:
|
||||
# script: python setup.py install
|
||||
build:
|
||||
script: python setup.py install
|
||||
|
||||
requirements:
|
||||
build:
|
||||
|
|
5
setup.py
5
setup.py
|
@ -48,7 +48,10 @@ class xsdist(sdist):
|
|||
def main():
|
||||
if sys.version_info[0] < 3:
|
||||
sys.exit('xonsh currently requires Python 3.4+')
|
||||
print(logo)
|
||||
try:
|
||||
print(logo)
|
||||
except UnicodeEncodeError:
|
||||
pass
|
||||
with open(os.path.join(os.path.dirname(__file__), 'README.rst'), 'r') as f:
|
||||
readme = f.read()
|
||||
skw = dict(
|
||||
|
|
Loading…
Add table
Reference in a new issue