Skip to content

Commit 7f5f62d

Browse files
committed
support python 3.4 testing
Got error with last commit. travis didn't even make it out of the starting gate. Maybe it needs an if form??
1 parent a33735f commit 7f5f62d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ before_install:
8484
- cd $TRAVIS_BUILD_DIR
8585

8686
install:
87-
- [[ $TRAVIS_PYTHON_VERSION == "3.4"* ]] && pip install mysqlclient==1.3.14
88-
- [[ $TRAVIS_PYTHON_VERSION != "3.4"* ]] && pip install mysqlclient
87+
- if [[ $TRAVIS_PYTHON_VERSION == "3.4"* ]]; then pip install mysqlclient==1.3.14; fi
88+
- if [[ $TRAVIS_PYTHON_VERSION != "3.4"* ]]; then pip install mysqlclient; fi
8989
- pip install psycopg2
9090
- pip install gpg pytz whoosh pyjwt
9191
- pip install pytest-cov codecov

0 commit comments

Comments
 (0)