python3: mark zlib plugin as only existing on python2

Fixes test failure due to checking whether all plugins work, and
considering this a plugin even though it is not.
This commit is contained in:
Eli Schwartz 2019-03-26 01:02:45 -04:00
parent 6d6509df57
commit 7196fa0773
No known key found for this signature in database
GPG Key ID: CEB167EFB5722BD6

View File

@ -168,7 +168,6 @@ class Plugins(collections.Mapping):
'icu',
'speedup',
'unicode_names',
'zlib2',
'html',
'freetype',
'imageops',
@ -184,6 +183,7 @@ class Plugins(collections.Mapping):
if not ispy3:
plugins.extend([
'monotonic',
'zlib2',
])
if iswindows:
plugins.extend(['winutil', 'wpd', 'winfonts'])