diff --git a/CHANGES b/CHANGES index 4c11ec8..6fc2562 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,8 @@ +1.1.0 UNRELEASED + - Port to python3 + 1.0.1 2019-02-11 - * Reorder milter start and dropping privileges so permissions on Unix socket + - Reorder milter start and dropping privileges so permissions on Unix socket are correct (LP: 1797720) - Make domain checks case insensitive for determining if signing should be done (LP: #1815311) diff --git a/README b/README index f7de656..535f178 100644 --- a/README +++ b/README @@ -17,7 +17,7 @@ to be installed when installing using setup.py, the following incantation is required because setuptools developers decided not being able to do this by default is a feature: -python setup.py install --single-version-externally-managed --record=/dev/null +python3 setup.py install --single-version-externally-managed --record=/dev/null For users of Debian Stable (Debian 9, Codename Squeeze), all dependencies are available in either the main or backports repositories: diff --git a/setup.py b/setup.py index 41a11a5..f3c9f26 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ -#! /usr/bin/python +#! /usr/bin/python3 # dkimpy-milter: A DKIM signing/verification Milter application # Author: Scott Kitterman -# Copyright 2018 Scott Kitterman +# Copyright 2018,2019 Scott Kitterman """ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or @@ -30,7 +30,7 @@ except ImportError: # If PyDNS is not installed, prefer dnspython setup( name='dkimpy-milter', - version='1.0.1', + version='1.1.0', author='Scott Kitterman', author_email='scott@kitterman.com', url='https://launchpad.net/dkimpy-milter', @@ -43,7 +43,7 @@ setup( 'License :: OSI Approved :: GNU General Public License (GPL)', 'Natural Language :: English', 'Operating System :: POSIX', - 'Programming Language :: Python :: 2 :: Only', + 'Programming Language :: Python :: 3', 'Topic :: Communications :: Email :: Mail Transport Agents', 'Topic :: Communications :: Email :: Filters', 'Topic :: Security',