From b3a70367c25000759e4c899103309d2fcb0f4483 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Elio=20Petten=C3=B2?= Date: Mon, 16 Mar 2020 21:57:11 +0000 Subject: Exclude mypy from Python 3.9 It looks like subscripts (Dict[Text]) don't work correctly with the current 3.9 dev, so ignore mypy on it right now. --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 1b8e924..f875f05 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,13 +9,14 @@ matrix: - python: 3.7 - python: 3.8 - python: 3.9-dev + env: RUN_MYPY=false install: - pip install .[dev] script: - py.test - - mypy glucometerutils + - if [[ $RUN_MYPY != false ]]; then mypy glucometerutils; fi - python setup.py bdist_wheel - pip install ./dist/glucometerutils-*.whl - if [[ $PRE_COMMIT ]]; then pre-commit install; pre-commit run --all-files; fi -- cgit v1.2.3