Skip to content

Commit

Permalink
Attempting to fix broken Python 2.6 & PyPy2 (#501)
Browse files Browse the repository at this point in the history
  • Loading branch information
henryiii committed Mar 6, 2020
1 parent 850693c commit bc80e22
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .ci/travis.sh
Expand Up @@ -11,7 +11,7 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
else
pip install --upgrade pip
pip install -r dev-requirements.txt
pip install coveralls
pip install 'coveralls;python_version>="2.7"'
pip install -e .
fi

Expand Down
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -18,7 +18,7 @@ matrix:
- python: 2.6
dist: trusty
env: PYV=2.6
- python: pypy
- python: pypy3
- language: generic
env: PY3=2 PYV=Mac2
os: osx
Expand All @@ -34,7 +34,7 @@ matrix:
install: ".ci/travis.sh"
script: python$PY3 setup.py test -c
after_success:
- if [ -n "$PYV" ] ; then coveralls; fi
- if [ -n "$PYV" ] && [ "$PYV" -ne "2.6" ] ; then coveralls; fi
notifications:
email:
on_success: change
Expand Down

0 comments on commit bc80e22

Please sign in to comment.