From 3c0b1904af3e1fd7ad3b59353c85edd7f534e515 Mon Sep 17 00:00:00 2001 From: Jacob Floyd Date: Tue, 14 Mar 2023 00:41:48 -0500 Subject: [PATCH] Update setup.py metadata and drop pip check --- setup.py | 6 ------ st2auth_flat_file_backend/__init__.py | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/setup.py b/setup.py index 52e7ca4..c93ff63 100644 --- a/setup.py +++ b/setup.py @@ -18,12 +18,9 @@ from setuptools import setup, find_packages -from dist_utils import check_pip_version from dist_utils import fetch_requirements from dist_utils import parse_version_string -check_pip_version() - BASE_DIR = os.path.dirname(os.path.abspath(__file__)) REQUIREMENTS_FILE = os.path.join(BASE_DIR, 'requirements.txt') INIT_FILE = os.path.join(BASE_DIR, 'st2auth_flat_file_backend', '__init__.py') @@ -48,10 +45,7 @@ 'Development Status :: 3 - Alpha', 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', diff --git a/st2auth_flat_file_backend/__init__.py b/st2auth_flat_file_backend/__init__.py index 883bdec..7c0f41b 100644 --- a/st2auth_flat_file_backend/__init__.py +++ b/st2auth_flat_file_backend/__init__.py @@ -21,4 +21,4 @@ 'FlatFileAuthenticationBackend' ] -__version__ = '0.1.1' +__version__ = '0.2.0'