Install older voluptuous on py27 due to import error

Voluptuous is a transitive test requirement and latest breaks on py27
due to enum not being importable. Address this by capping Voluptuous on
python27.

Change-Id: I4301557247a447d0c0271474fc21cf9c6a1c5c4a
This commit is contained in:
Clark Boylan 2022-04-01 08:36:47 -07:00
parent 72c04e4608
commit 3ced516ec1
1 changed files with 1 additions and 0 deletions

View File

@ -14,3 +14,4 @@ oslotest>=1.1.0.0a1
testrepository>=0.0.18
testscenarios>=0.4
testtools>=0.9.34
voluptuous<0.13.0;python_version=='2.7'