We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 609619b commit 88f67c8Copy full SHA for 88f67c8
sdk/tables/azure-data-nspkg/setup.py
@@ -8,13 +8,6 @@
8
import sys
9
from setuptools import setup
10
11
-PACKAGES = []
12
-# Do an empty package on Python 3 and not python_requires, since not everybody is ready
13
-# https://github.com/Azure/azure-sdk-for-python/issues/3447
14
-# https://github.com/Azure/azure-sdk-for-python/issues/3481
15
-if sys.version_info[0] < 3:
16
- PACKAGES = ['azure.data']
17
-
18
setup(
19
name='azure-data-nspkg',
20
version='1.0.0',
@@ -38,7 +31,7 @@
38
31
"License :: OSI Approved :: MIT License",
39
32
],
40
33
zip_safe=False,
41
- packages=PACKAGES,
34
+ packages=['azure.data'],
42
35
install_requires=[
43
36
'azure-nspkg>=3.0.0',
44
37
]
0 commit comments