Skip to content

Commit f75c477

Browse files
committed
Do not run black on Python 3.5
1 parent 9d87bf3 commit f75c477

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ install:
1717
- pip install -r test-requirements.txt
1818
- pip install -U django==$DJANGO_VERSION
1919
script:
20-
- black --check django_dbq
20+
- if [ "$TRAVIS_PYTHON_VERSION" != "3.5" ]; then black --check django_dbq; fi
2121
- python manage.py test
2222
deploy:
2323
provider: pypi

0 commit comments

Comments
 (0)