From 770841b3ee43b322d7f9669aa2f6df05d0660a5b Mon Sep 17 00:00:00 2001 From: grossmj Date: Mon, 27 Apr 2020 12:43:07 +0930 Subject: [PATCH] Use Environmental Markers to force jsonschema version 2.6.0 on Windows/macOS. Ref https://github.com/GNS3/gns3-gui/issues/2849 --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 95f2eb49..39b84933 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,6 @@ yarl==1.3.0 # yarl 1.4+ requires Python 3.6+ (needed by aiohttp and aiohttp-cors) -jsonschema==2.6.0 # pyup: ignore +jsonschema==3.2.0 +jsonschema==2.6.0; sys.platform == 'win32' or sys.platform == 'darwin' # pyup: ignore (force jsonschema 2.6.0 on Windows and macOS) aiohttp==3.6.2 aiohttp-cors==0.7.0 aiofiles==0.4.0