Skip to content

Commit bbda7bc

Browse files
committed
Update README, package docstring and package vaersion to 0.1.1
1 parent 5b40995 commit bbda7bc

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ To call Microsoft Graph, your app must acquire an access token from the Microsof
2222

2323
### 2. Install the required packages
2424

25-
Msgraph-core is available on PyPI
25+
msgraph-core is available on PyPI.
2626

2727
`python -m pip install msgraph-core`
2828
`python -m pip install azure-identity`

msgraph/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@
22
# Copyright (c) Microsoft Corporation.
33
# Licensed under the MIT License.
44
# -----------------------------------
5+
6+
# pylint: disable=line-too-long
7+
# This is to allow complete package description on PyPI
58
"""
6-
Microsoft Graph Core Library for Python (Preview)
9+
Core component of the Microsoft Graph Python SDK consisting of HTTP/Graph Client and a configurable middleware pipeline (Preview).
710
"""
811
from .core import SDK_VERSION
912

msgraph/core/_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
"""
99
DEFAULT_REQUEST_TIMEOUT = 100
1010
DEFAULT_CONNECTION_TIMEOUT = 30
11-
SDK_VERSION = '0.1.0'
11+
SDK_VERSION = '0.1.1'

0 commit comments

Comments
 (0)