Skip to content

Commit 3973d64

Browse files
committed
remove python2 support
1 parent c930cfe commit 3973d64

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
'License :: OSI Approved :: MIT License',
2929
'Natural Language :: English',
3030
'Operating System :: OS Independent',
31-
'Programming Language :: Python :: 2.7',
3231
'Programming Language :: Python :: 3.4',
3332
'Programming Language :: Python :: 3.5',
3433
'Programming Language :: Python :: 3.6',
@@ -44,7 +43,7 @@
4443
packages=['spectrum_client'],
4544
setup_requires=['setuptools>=40.2.0'],
4645
install_requires=['requests'],
47-
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
46+
python_requires='>=3.4',
4847
project_urls={
4948
'Bug Reports': 'https://github.com/orgito/spectrum-client/issues',
5049
'Source': 'https://github.com/orgito/spectrum-client',

spectrum_client/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__title__ = 'spectrum-client'
22
__description__ = 'CA Spectrum Web Services API wrapper.'
33
__url__ = 'https://github.com/orgito/spectrum-client'
4-
__version__ = '0.4.0'
4+
__version__ = '0.4.1'
55
__author__ = 'Renato Orgito'
66
__author_email__ = '[email protected]'
77
__license__ = 'MIT'

0 commit comments

Comments
 (0)