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