Skip to content

Commit 6741abf

Browse files
authored
Merge pull request #14 from jayvdb/compiler-opts
Fix PYTHON_CONFIGURE_OPTS
2 parents 4b95660 + dfe93b2 commit 6741abf

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ before_script:
2626
- 'export ARCH=${ARCH:-$(uname -m)}'
2727
- 'export PACKAGES=${PACKAGES:-pip nose pytest mock wheel}'
2828
- 'export CPYTHON_ONLY_PKGS="numpy"'
29-
- export PYTHON_COFIGURE_OPTS="$CONFIGURE_OPTS --enable-unicode=ucs4"
29+
- export PYTHON_CONFIGURE_OPTS="$CONFIGURE_OPTS"
3030

3131
script: ./bin/compile
3232

bin/compile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ if [[ $ALIAS ]] ; then
4040
ln -s $HOME/virtualenv/$VIRTENV_VERSION $HOME/virtualenv/python$ALIAS
4141
fi
4242

43+
$HOME/virtualenv/$VIRTENV_VERSION/bin/python -c "import sys; assert sys.maxunicode > 65535"
44+
4345
if [[ $PACKAGES ]] ; then
4446
$HOME/virtualenv/$VIRTENV_VERSION/bin/pip install --upgrade $PACKAGES
4547
fi

0 commit comments

Comments
 (0)