mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +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
|
fn: xonsh.tar.gz
|
||||||
url: https://github.com/scopatz/xonsh/archive/master.tar.gz
|
url: https://github.com/scopatz/xonsh/archive/master.tar.gz
|
||||||
|
|
||||||
#build:
|
build:
|
||||||
# script: python setup.py install
|
script: python setup.py install
|
||||||
|
|
||||||
requirements:
|
requirements:
|
||||||
build:
|
build:
|
||||||
|
|
5
setup.py
5
setup.py
|
@ -48,7 +48,10 @@ class xsdist(sdist):
|
||||||
def main():
|
def main():
|
||||||
if sys.version_info[0] < 3:
|
if sys.version_info[0] < 3:
|
||||||
sys.exit('xonsh currently requires Python 3.4+')
|
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:
|
with open(os.path.join(os.path.dirname(__file__), 'README.rst'), 'r') as f:
|
||||||
readme = f.read()
|
readme = f.read()
|
||||||
skw = dict(
|
skw = dict(
|
||||||
|
|
Loading…
Add table
Reference in a new issue