From 400c65eec82ff8407187a859820d0cb26b8e8afb Mon Sep 17 00:00:00 2001 From: Thomas Oettli Date: Tue, 11 Feb 2020 09:01:10 +0100 Subject: [PATCH] Change version to 1.0.0 and introduce beta status --- pyquarantine/version.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyquarantine/version.py b/pyquarantine/version.py index 00ec2dc..5becc17 100644 --- a/pyquarantine/version.py +++ b/pyquarantine/version.py @@ -1 +1 @@ -__version__ = "0.0.9" +__version__ = "1.0.0" diff --git a/setup.py b/setup.py index 39fe2de..cc68828 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup(name = "pyquarantine", # 3 - Alpha # 4 - Beta # 5 - Production/Stable - "Development Status :: 3 - Alpha", + "Development Status :: 4 - Beta", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Operating System :: OS Independent", "Programming Language :: Python", @@ -36,5 +36,5 @@ setup(name = "pyquarantine", ] }, install_requires = ["pymilter", "netaddr", "beautifulsoup4[lxml]", "peewee"], - python_requires = ">=3" + python_requires = ">=3.6" )