Skip to content

Commit

Permalink
Remove the __init__ and use namespace packages to fix the issue with …
Browse files Browse the repository at this point in the history
…the clash of azure.core namespace from the msrest package
  • Loading branch information
tonybaloney committed Oct 9, 2023
1 parent f6a4a50 commit 4ff8a5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions azure-devops/azure/__init__.py

This file was deleted.

4 changes: 2 additions & 2 deletions azure-devops/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------

from setuptools import setup, find_packages
from setuptools import setup, find_namespace_packages

NAME = "azure-devops"
VERSION = "7.1.0b3"
Expand Down Expand Up @@ -44,7 +44,7 @@
keywords=["Microsoft", "VSTS", "Team Services", "SDK", "AzureTfs", "AzureDevOps", "DevOps"],
install_requires=REQUIRES,
classifiers=CLASSIFIERS,
packages=find_packages(),
packages=find_namespace_packages(),
include_package_data=True,
python_requires=">=3.7",
long_description="Azure DevOps Python clients"
Expand Down

0 comments on commit 4ff8a5f

Please sign in to comment.