You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, this should be fixed in the new version 7.1.0b2
This happened because there was .gitignore setup to ignore release folders, there were setup exceptions but they were for specific paths, because I changed the version and with it paths the release files weren't picked up. Updated the .gitignore exception to not be version specific.
Version: 7.1.0b1
Code:
`from azure.devops.connection import Connection
from msrest.authentication import BasicAuthentication
personal_access_token = 'TOKEN'
organization_url = 'URL'
credentials = BasicAuthentication('', personal_access_token)
connection = Connection(base_url=organization_url, creds=credentials)
client = connection.clients.get_release_client()`
Error: ModuleNotFoundError: No module named 'azure.devops.v7_0.release'
The text was updated successfully, but these errors were encountered: