Skip to content

Commit 12ca44e

Browse files
authored
change requirement in setup.py (#26)
* chang requirement * update version
1 parent 726b1b0 commit 12ca44e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
setup(
3737
name='azure-multiapi-storage',
38-
version='0.3.2',
38+
version='0.3.3',
3939
description='Microsoft Azure Storage Client Library for Python with multi API version support.',
4040
long_description=open('README.rst', 'r').read(),
4141
license='MIT',
@@ -51,12 +51,14 @@
5151
'Programming Language :: Python :: 3.3',
5252
'Programming Language :: Python :: 3.4',
5353
'Programming Language :: Python :: 3.5',
54+
'Programming Language :: Python :: 3.6',
55+
'Programming Language :: Python :: 3.7',
56+
'Programming Language :: Python :: 3.8',
5457
'License :: OSI Approved :: Apache Software License',
5558
],
5659
zip_safe=False,
5760
packages=find_packages(),
5861
install_requires=[
59-
'azure-nspkg',
6062
'azure-common',
6163
'cryptography',
6264
'python-dateutil',
@@ -65,5 +67,6 @@
6567
],
6668
extras_require={
6769
':python_version=="2.7"': ['futures'],
70+
':python_version<"3.0"': ['azure-nspkg'],
6871
},
6972
)

0 commit comments

Comments
 (0)