Skip to content

Commit 37e5c8d

Browse files
authored
Merge pull request #6 from StackStorm/clean-setup
Clean up setup.py
2 parents f54fc81 + f4c2f1e commit 37e5c8d

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

setup.py

+3-6
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_keystone_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_keystone_backend/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
'KeystoneAuthenticationBackend'
2020
]
2121

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

0 commit comments

Comments
 (0)