-
Notifications
You must be signed in to change notification settings - Fork 50
Updating sdk
samedder edited this page Sep 7, 2017
·
3 revisions
The Service Fabric CLI uses the underlying Azure Python SDK generated from Azure Service Fabric swagger specifications.
The latest swagger specification can be found in the Azure GitHub repo. For contributing guidelines, see the repository documentation.
The corresponding python SDK can be found in a different Azure GitHub repo.
First, submit changes to both repos. The repository owners update the
public Swagger and publish a new Python package after merging the PRs. After
the package has been published, modify the following section in src\setup.py
:
install_requires=[
'azure-servicefabric==5.6.130',
],
The new version should replace the 5.6.130
string. After making this change,
be sure to rerun the pip install -e .\src
command as the new package
will need to be installed.
- Development
- How-To
- Details
- Service Fabric Developers