From e38cbba53f8e4f4af68bd411dd237feecf3e8cfc Mon Sep 17 00:00:00 2001
From: Ellis Percival <flyte@failcode.co.uk>
Date: Mon, 18 Jan 2021 20:13:11 +0000
Subject: [PATCH] Rearrange pip commands because of
 https://github.com/pypa/pip/issues/8214

---
 .github/workflows/test.yml | 4 ++--
 requirements.txt           | 1 -
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 2dbdc31..5195b7c 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -13,10 +13,10 @@ jobs:
       - uses: actions/setup-python@v2
         with:
           python-version: ${{ matrix.python-version }}
-      - run: pip install pytest mock -r requirements.txt
-      - run: make schema
       - run: pip install black
         if: matrix.python-version != '2.7'
+      - run: pip install pytest mock -r requirements.txt
+      - run: make schema
       - run: make black
         if: matrix.python-version != '2.7'
       - run: PYTHONPATH=$GITHUB_WORKSPACE py.test -m "not hw_raspberrypi and not mqtt"
diff --git a/requirements.txt b/requirements.txt
index 206cd60..e072898 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,4 +1,3 @@
 paho-mqtt
 PyYAML>=5.3.1
-enum34
 cerberus
-- 
GitLab