minor updates

This commit is contained in:
Anthony Scopatz 2015-03-23 01:40:44 -05:00
parent c2673011a0
commit 5843d72a31
3 changed files with 6 additions and 6 deletions

View file

@ -1,3 +0,0 @@
which python
python -V
python setup.py install

View file

@ -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:

View file

@ -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(