# HG changeset patch # User Aurelien Campeas # Date 1598610201 -7200 # Fri Aug 28 12:23:21 2020 +0200 # Node ID fefa8128073b1e4389d47f8680974ecf2b20bafa # Parent 151ce550dd210959425cd1e2ddeb2d4e26c4670d pkg: drop py2 compat advertising, prepare 1.21 diff --git a/pml.py b/pml.py --- a/pml.py +++ b/pml.py @@ -1,4 +1,3 @@ -# -*- encoding: utf-8 -*- '''Simple, elegant HTML, XHTML and XML generation. Constructing your HTML diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ # perform the setup action setup( name='pml', - version='1.20', + version='1.21', description='simple, elegant HTML, XHTML and XML generation', long_description=__doc__, author='Richard Jones', @@ -17,9 +17,6 @@ classifiers=[ 'Environment :: Web Environment', 'Intended Audience :: Developers', - 'Programming Language :: Python :: 2.5', - 'Programming Language :: Python :: 2.6', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Topic :: Software Development :: Code Generators', 'Topic :: Software Development :: Libraries :: Python Modules',