Skip to content

Commit 4ff8a5f

Browse files
committed
Remove the __init__ and use namespace packages to fix the issue with the clash of azure.core namespace from the msrest package
1 parent f6a4a50 commit 4ff8a5f

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

azure-devops/azure/__init__.py

Lines changed: 0 additions & 4 deletions
This file was deleted.

azure-devops/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Licensed under the MIT License. See License.txt in the project root for license information.
44
# --------------------------------------------------------------------------------------------
55

6-
from setuptools import setup, find_packages
6+
from setuptools import setup, find_namespace_packages
77

88
NAME = "azure-devops"
99
VERSION = "7.1.0b3"
@@ -44,7 +44,7 @@
4444
keywords=["Microsoft", "VSTS", "Team Services", "SDK", "AzureTfs", "AzureDevOps", "DevOps"],
4545
install_requires=REQUIRES,
4646
classifiers=CLASSIFIERS,
47-
packages=find_packages(),
47+
packages=find_namespace_packages(),
4848
include_package_data=True,
4949
python_requires=">=3.7",
5050
long_description="Azure DevOps Python clients"

0 commit comments

Comments
 (0)