From d5a2e61c401f1d9b19661ceabe996f74cd46a443 Mon Sep 17 00:00:00 2001 From: brad-anton Date: Sun, 11 Oct 2020 19:06:05 -0400 Subject: [PATCH] finalizing release --- hashdd/version | 2 +- setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/hashdd/version b/hashdd/version index 21f497b..e388c03 100644 --- a/hashdd/version +++ b/hashdd/version @@ -19,5 +19,5 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. """ - __version__ = '0.0.18' + __version__ = '0.0.19' diff --git a/setup.py b/setup.py index e758b21..f187ab9 100644 --- a/setup.py +++ b/setup.py @@ -38,8 +38,7 @@ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Programming Language :: Python', - 'Programming Language :: Python :: 2.6', - 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Operating System :: OS Independent', @@ -93,7 +92,8 @@ def main(): install_requires=install_requires, classifiers=CLASSIFIERS, keywords=['hashdd', 'pyhashdd', 'hash database'], - license=open('LICENSE').read() + license=open('LICENSE').read(), + python_requires='>=3.7' )