Skip to content

Commit ef12e1f

Browse files
authored
Merge pull request #525 from microsoftgraph/fix/release-trigger
fix/release trigger
2 parents 2a79677 + 92aafba commit ef12e1f

File tree

2 files changed

+32
-27
lines changed

2 files changed

+32
-27
lines changed

README.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,24 @@
1+
# Microsoft Graph Beta SDK for Python
2+
13
[![PyPI version](https://badge.fury.io/py/msgraph-beta-sdk.svg)](https://badge.fury.io/py/msgraph-beta-sdk)
24
[![Downloads](https://pepy.tech/badge/msgraph-beta-sdk)](https://pepy.tech/project/msgraph-beta-sdk)
35
[![Supported Versions](https://img.shields.io/pypi/pyversions/msgraph-beta-sdk.svg)](https://pypi.org/project/msgraph-beta-sdk)
46
[![Contributors](https://img.shields.io/github/contributors/microsoftgraph/msgraph-beta-sdk-python.svg)](https://github.com/microsoftgraph/msgraph-beta-sdk-python/graphs/contributors)
57

6-
# Microsoft Graph Beta SDK for Python
7-
88
Get started with the Microsoft Graph Beta SDK for Python by integrating the [Microsoft Graph API](https://docs.microsoft.com/graph/overview) into your Python application.
99

10-
> **Note:**
10+
> **Note:**
11+
>
1112
> * This SDK allows you to build applications using the latest [beta](https://docs.microsoft.com/graph/use-the-api#version) version of Microsoft Graph. If you want to try the v1.0 Microsoft Graph API, use the [v1.0](https://github.com/microsoftgraph/msgraph-sdk-python) SDK.
1213
1314
## 1. Installation
1415

1516
```py
1617
pip install msgraph-beta-sdk
1718
```
18-
> **Note:**
19+
20+
> **Note:**
21+
>
1922
> * The Microsoft Graph Beta SDK for Python is a fairly large package. It may take a few minutes for the initial installation to complete.
2023
> * Enable long paths in your environment if you receive a `Could not install packages due to an OSError`. For details, see [Enable Long Paths in Windows 10, Version 1607, and Later](https://learn.microsoft.com/en-us/windows/win32/fileio/maximum-file-path-limitation?tabs=powershell#enable-long-paths-in-windows-10-version-1607-and-later).
2124
@@ -94,6 +97,7 @@ asyncio.run(me())
9497
### 3.1 Error Handling
9598

9699
Failed requests raise `APIError` exceptions. You can handle these exceptions using `try` `catch` statements.
100+
97101
```py
98102
from kiota_abstractions.api_error import APIError
99103
async def get_user():
@@ -104,6 +108,7 @@ async def get_user():
104108
print(f'Error: {e.error.message}')
105109
asyncio.run(get_user())
106110
```
111+
107112
## Documentation and resources
108113

109114
* [Overview](https://docs.microsoft.com/graph/overview)
@@ -116,7 +121,6 @@ asyncio.run(get_user())
116121

117122
For detailed information on breaking changes, bug fixes and new functionality introduced during major upgrades, check out our [Upgrade Guide](UPGRADING.md)
118123

119-
120124
## Issues
121125

122126
View or log issues on the [Issues](https://github.com/microsoftgraph/msgraph-beta-sdk-python/issues) tab in the repo.
@@ -132,4 +136,5 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT
132136
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
133137

134138
## Third Party Notices
139+
135140
[Third-party notices](THIRD%20PARTY%20NOTICES)

release-please-config.json

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
{
2-
"bootstrap-sha": "9096adb098e11bd5484335b5e08bd0c882db7407",
3-
"exclude-paths": [
4-
".git",
5-
".idea",
6-
".github",
7-
".vscode"
8-
],
9-
"release-type": "python",
10-
"include-component-in-tag": false,
11-
"include-v-in-tag": true,
12-
"packages": {
13-
".": {
14-
"package-name": "msgraph_beta",
15-
"changelog-path": "CHANGELOG.md",
16-
"extra-files": [
17-
"pyproject.toml",
18-
"msgraph_beta/_version.py"
19-
]
20-
}
21-
},
22-
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
23-
}
2+
"bootstrap-sha": "9096adb098e11bd5484335b5e08bd0c882db7407",
3+
"exclude-paths": [
4+
".git",
5+
".idea",
6+
".github",
7+
".vscode"
8+
],
9+
"release-type": "simple",
10+
"include-component-in-tag": false,
11+
"include-v-in-tag": true,
12+
"packages": {
13+
".": {
14+
"package-name": "msgraph_beta",
15+
"changelog-path": "CHANGELOG.md",
16+
"extra-files": [
17+
"pyproject.toml",
18+
"msgraph_beta/_version.py"
19+
]
20+
}
21+
},
22+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
23+
}

0 commit comments

Comments
 (0)