In some cases, Python's platform.machine() returns 'amd64' instead of 'x86_64'. For the PyPi version, that means every call to jsonschema issues an error like Unsupported platform: windows-amd64 and does nothing. Replacing 'amd64' with 'x86_64' seems to fix the problem.
In some cases, Python's
platform.machine()returns'amd64'instead of'x86_64'. For the PyPi version, that means every call tojsonschemaissues an error likeUnsupported platform: windows-amd64and does nothing. Replacing'amd64'with'x86_64'seems to fix the problem.