pkg: really produce a universal wheel
4 files changed, 5 insertions(+), 1 deletions(-)

M README.md
M pml.py
A => setup.cfg
M setup.py
M README.md +1 -0
@@ 209,6 209,7 @@ If your tag name isn't a valid Python id
 Version History (in Brief)
 --------------------------------
 
+- 1.19 produce a universal wheel
 - 1.17 repackage it as "pml" since "html" clashes with the
   homonymous py3 stdlib module
 - 1.16 detect and raise a more useful error when some WSGI frameworks

          
M pml.py +1 -0
@@ 189,6 189,7 @@ If your tag name isn't a valid Python id
 Version History (in Brief)
 --------------------------
 
+- 1.19 produce a universal wheel
 - 1.17 repackage it as "pml" since "html" clashes with the
   homonymous py3 stdlib module
 - 1.16 detect and raise a more useful error when some WSGI frameworks

          
A => setup.cfg +2 -0
@@ 0,0 1,2 @@ 
+[bdist_wheel]
+universal = 1

          
M setup.py +1 -1
@@ 7,7 7,7 @@ from pml import __doc__
 # perform the setup action
 setup(
     name='pml',
-    version='1.18',
+    version='1.19',
     description='simple, elegant HTML, XHTML and XML generation',
     long_description=__doc__,
     author='Richard Jones',