Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 89759a2

Browse files
committed
update build script
+ fix cpython branch + no need to specific python version in travis config
1 parent 0583f0a commit 89759a2

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
language: python
22
cache: pip
3-
python: 3.6
43

54
script: ./build.sh

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ set -ex
44
cur=$(dirname "$(readlink -f "$0")")
55
cd "$cur"/.. || exit 1
66
if [ -d cpython ]; then
7-
(cd cpython; git fetch; git checkout origin/3.7)
7+
(cd cpython; git fetch; git checkout origin/3.8)
88
else
9-
git clone --depth=1 --branch=3.7 https://github.com/python/cpython.git
9+
git clone --depth=1 --branch=3.8 https://github.com/python/cpython.git
1010
fi
1111
cd cpython/Doc
1212
mkdir -p locales/zh_CN/

0 commit comments

Comments
 (0)