From e943cebd3551cce7cc1288c3922ad0748d9741a3 Mon Sep 17 00:00:00 2001
From: Todd Dembrey <todd.dembrey@torchbox.com>
Date: Fri, 13 Sep 2019 17:35:46 +0100
Subject: [PATCH] Pin Faker version so that we dont come across the decimal API
 change (#1520)

pydecimal complains about:
`TypeError: pydecimal() got an unexpected keyword argument 'min_value'`

for versions of faker < 1.0
---
 requirements.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/requirements.txt b/requirements.txt
index 0117e0125..cb6f47f49 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -5,6 +5,7 @@
 # Test dependencies
 flake8
 factory_boy==2.9.2
+Faker==1.0.8 # Pinning to avoid API changes to pydecimal in 0.x - could go higher in future
 wagtail-factories==1.1.0
 responses==0.10.4
 
-- 
GitLab