Skip to content

Commit 4587f9f

Browse files
committed
Update setup.py metadata and drop pip check
1 parent 5c35447 commit 4587f9f

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

setup.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,9 @@
1818

1919
from setuptools import setup, find_packages
2020

21-
from dist_utils import check_pip_version
2221
from dist_utils import fetch_requirements
2322
from dist_utils import parse_version_string
2423

25-
check_pip_version()
26-
2724
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
2825
REQUIREMENTS_FILE = os.path.join(BASE_DIR, 'requirements.txt')
2926
INIT_FILE = os.path.join(BASE_DIR, 'st2auth_vault_backend', '__init__.py')
@@ -44,10 +41,10 @@
4441
'Development Status :: 3 - Alpha',
4542
'License :: OSI Approved :: Apache Software License',
4643
'Programming Language :: Python',
47-
'Programming Language :: Python :: 2',
48-
'Programming Language :: Python :: 2.7',
4944
'Programming Language :: Python :: 3',
50-
'Programming Language :: Python :: 3.4',
45+
'Programming Language :: Python :: 3.6',
46+
'Programming Language :: Python :: 3.7',
47+
'Programming Language :: Python :: 3.8',
5148
'Intended Audience :: Developers',
5249
'Environment :: Console',
5350
],

st2auth_vault_backend/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
'VaultAuthenticationBackend'
2020
]
2121

22-
__version__ = '0.1.0'
22+
__version__ = '0.2.0'

0 commit comments

Comments
 (0)