From 2fa5af2c2b628883431e3c6b7de46625dfd1a1dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Beraud?= Date: Tue, 9 Jun 2020 10:46:06 +0200 Subject: [PATCH] drop mock from lower-constraints and requirements The mock third party library was needed for mock support in py2 runtimes. Since we now only support py36 and later, we don't need it in lower-constraints and requirements. These changes will help us to drop `mock` from openstack/requirements Change-Id: I1a31c6c5a04e0e883cf956a5ae74f444b1673332 --- lower-constraints.txt | 1 - test-requirements.txt | 1 - 2 files changed, 2 deletions(-) diff --git a/lower-constraints.txt b/lower-constraints.txt index 9965ecc..d59706a 100644 --- a/lower-constraints.txt +++ b/lower-constraints.txt @@ -44,7 +44,6 @@ kombu==4.0.0 linecache2==1.0.0 MarkupSafe==1.0 mccabe==0.2.1 -mock==2.0.0 monotonic==0.6 msgpack-python==0.4.0 munch==2.1.0 diff --git a/test-requirements.txt b/test-requirements.txt index ee903c6..aaed4b9 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -7,4 +7,3 @@ hacking>=3.0.1,<3.1.0 # Apache-2.0 coverage!=4.4,>=4.0 # Apache-2.0 flake8-import-order==0.13 # LGPLv3 -mock>=2.0.0 # BSD