Skip to content

Commit 5cd8c9f

Browse files
authored
Merge pull request #19 from StackStorm/clean-setup
Clean up setup.py
2 parents 5568a49 + 5fa741f commit 5cd8c9f

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
@@ -17,12 +17,9 @@
1717

1818
from setuptools import setup, find_packages
1919

20-
from dist_utils import check_pip_version
2120
from dist_utils import fetch_requirements
2221
from dist_utils import parse_version_string
2322

24-
check_pip_version()
25-
2623
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
2724
REQUIREMENTS_FILE = os.path.join(BASE_DIR, 'requirements.txt')
2825
INIT_FILE = os.path.join(BASE_DIR, 'st2auth_pam_backend', '__init__.py')
@@ -45,10 +42,10 @@
4542
'Development Status :: 3 - Alpha',
4643
'License :: OSI Approved :: Apache Software License',
4744
'Programming Language :: Python',
48-
'Programming Language :: Python :: 2',
49-
'Programming Language :: Python :: 2.7',
5045
'Programming Language :: Python :: 3',
51-
'Programming Language :: Python :: 3.4',
46+
'Programming Language :: Python :: 3.6',
47+
'Programming Language :: Python :: 3.7',
48+
'Programming Language :: Python :: 3.8',
5249
'Intended Audience :: Developers',
5350
'Environment :: Console',
5451
],

st2auth_pam_backend/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
'PAMAuthenticationBackend'
2222
]
2323

24-
__version__ = '0.2.0'
24+
__version__ = '0.3.0'

0 commit comments

Comments
 (0)