Skip to content

Commit 88f67c8

Browse files
authored
Fix data nspkg (#13623)
1 parent 609619b commit 88f67c8

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

sdk/tables/azure-data-nspkg/setup.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,6 @@
88
import sys
99
from setuptools import setup
1010

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-
1811
setup(
1912
name='azure-data-nspkg',
2013
version='1.0.0',
@@ -38,7 +31,7 @@
3831
"License :: OSI Approved :: MIT License",
3932
],
4033
zip_safe=False,
41-
packages=PACKAGES,
34+
packages=['azure.data'],
4235
install_requires=[
4336
'azure-nspkg>=3.0.0',
4437
]

0 commit comments

Comments
 (0)