Skip to content

Commit

Permalink
fix paths in get_package_properties.py (#39049)
Browse files Browse the repository at this point in the history
* Update get_package_properties.py

* few more corrections
  • Loading branch information
kristapratico authored Jan 7, 2025
1 parent bd5dfd2 commit 83acc88
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions eng/scripts/get_package_properties.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"azure-core":[
os.path.join("/sdk", "servicebus", "azure-servicebus"),
os.path.join("/sdk", "eventhub", "azure-eventhub"),
os.path.join("/sdk", "tables", "azure-data-table"),
os.path.join("/sdk", "appconfig", "azure-appconfig"),
os.path.join("/sdk", "tables", "azure-data-tables"),
os.path.join("/sdk", "appconfiguration", "azure-appconfiguration"),
os.path.join("/sdk", "keyvault", "azure-keyvault-keys"),
os.path.join("/sdk", "identity", "azure-identity"),
os.path.join("/sdk", "core", "azure-mgmt-core"),
Expand All @@ -22,10 +22,10 @@
# related to windows only + emulator
# os.path.join("/sdk", "cosmos", "azure-cosmos"),
os.path.join("/sdk", "ml", "azure-ai-ml"),
os.path.join("/sdk", "ai", "azure-ai-documentintelligence"),
os.path.join("/sdk", "documentintelligence", "azure-ai-documentintelligence"),
os.path.join("/sdk", "ai", "azure-ai-inference"),
os.path.join("/sdk", "ai", "azure-ai-textanalytics"),
os.path.join("/sdk", "ai", "azure-ai-doctranslation"),
os.path.join("/sdk", "textanalytics", "azure-ai-textanalytics"),
os.path.join("/sdk", "translation", "azure-ai-translation-document"),
os.path.join("/sdk", "compute", "azure-mgmt-compute"),
os.path.join("/sdk", "communication", "azure-communication-chat"),
os.path.join("/sdk", "communication", "azure-communication-identity"),
Expand All @@ -34,7 +34,7 @@
"azure-mgmt-core": [
os.path.join("/sdk", "compute", "azure-mgmt-compute"),
os.path.join("/sdk", "network", "azure-mgmt-network"),
os.path.join("/sdk", "resource", "azure-mgmt-resource"),
os.path.join("/sdk", "resources", "azure-mgmt-resource"),
os.path.join("/sdk", "keyvault", "azure-mgmt-keyvault")
]
}
Expand Down Expand Up @@ -66,4 +66,4 @@
)
except:
# Skip setup.py if the package cannot be parsed
pass
pass

0 comments on commit 83acc88

Please sign in to comment.