From 7496abaf17caac42cf1f42aefe82bb24e432200e Mon Sep 17 00:00:00 2001
From: Todd Dembrey <todd.dembrey@torchbox.com>
Date: Thu, 14 Jun 2018 16:05:42 +0100
Subject: [PATCH] Remove mypy

---
 .travis.yml      |  3 ---
 requirements.txt |  1 -
 setup.cfg        | 27 ---------------------------
 3 files changed, 31 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index f7f93a87b..6d7e7b0de 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -60,9 +60,6 @@ script:
   # Run python code style checks
   - flake8
 
-  # Type check the project
-  - mypy .
-
   # Collect static
   - python manage.py collectstatic --noinput --verbosity=0
 
diff --git a/requirements.txt b/requirements.txt
index ae8d0744c..3d21931b7 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -12,7 +12,6 @@ stellar==0.4.3
 django-tinymce4-lite==1.7.0
 uwsgidecorators==1.1.0
 
-mypy==0.550
 factory_boy==2.9.2
 # wagtail_factories - waiting on merge and release form master branch
 git+git://github.com/todd-dembrey/wagtail-factories.git#egg=wagtail_factories
diff --git a/setup.cfg b/setup.cfg
index f0ffa402e..b17a8586f 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,30 +1,3 @@
-[mypy]
-show_column_numbers = True
-ignore_missing_imports = True
-
-[mypy-opentech.*]
-ignore_errors = True
-
-# Turn on type checking in the apply folder
-[mypy-opentech.apply.funds*]
-check_untyped_defs = True
-ignore_errors = False
-
-[mypy-opentech.apply.funds.tests.factories*]
-ignore_errors = True
-
-# Enforce writing type definitions within workflow
-[mypy-opentech.apply.funds.workflow*]
-disallow_untyped_defs = True
-
-# Exclude migrations globally - must be at end
-[mypy-*.migrations*]
-ignore_errors = True
-
-# Exclude management commands globally - must be at end
-[mypy-*.management*]
-ignore_errors = True
-
 [flake8]
 ignore = E501,F405
 exclude = migrations,node_modules
-- 
GitLab