From 5843d72a317d78402fcbeb87f1cc7e564ea06aad Mon Sep 17 00:00:00 2001 From: Anthony Scopatz Date: Mon, 23 Mar 2015 01:40:44 -0500 Subject: [PATCH] minor updates --- recipe/build.sh | 3 --- recipe/meta.yaml | 4 ++-- setup.py | 5 ++++- 3 files changed, 6 insertions(+), 6 deletions(-) delete mode 100755 recipe/build.sh diff --git a/recipe/build.sh b/recipe/build.sh deleted file mode 100755 index 36f73bc98..000000000 --- a/recipe/build.sh +++ /dev/null @@ -1,3 +0,0 @@ -which python -python -V -python setup.py install \ No newline at end of file diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 1249d590c..07484621d 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -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: diff --git a/setup.py b/setup.py index 07740ed7a..a9878921f 100755 --- a/setup.py +++ b/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(