Skip to content

Commit 0fffebf

Browse files
committed
GA release
1 parent 8d77226 commit 0fffebf

File tree

4 files changed

+26
-14
lines changed

4 files changed

+26
-14
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.0.0] - 2023-10-31
9+
10+
### Added
11+
12+
### Changed
13+
- GA Release.
14+
815
## [1.0.0rc1] - 2023-10-30
916

1017
### Added

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,23 @@
1+
[![PyPI version](https://badge.fury.io/py/msgraph-sdk.svg)](https://badge.fury.io/py/msgraph-sdk)
2+
[![Downloads](https://pepy.tech/badge/msgraph-sdk)](https://pepy.tech/project/msgraph-sdk)
3+
[![Supported Versions](https://img.shields.io/pypi/pyversions/msgraph-sdk.svg)](https://pypi.org/project/msgraph-sdk)
4+
[![Contributors](https://img.shields.io/github/contributors/microsoftgraph/msgraph-sdk-python.svg)](https://github.com/microsoftgraph/msgraph-sdk-python/graphs/contributors)
5+
16
# Microsoft Graph SDK for Python
27

38
Get started with the Microsoft Graph SDK for Python by integrating the [Microsoft Graph API](https://docs.microsoft.com/graph/overview) into your Python application.
49

510
> **Note:**
611
> * This SDK allows you to build applications using the [v1.0](https://docs.microsoft.com/graph/use-the-api#version) of Microsoft Graph. If you want to try the latest Microsoft Graph APIs, try the [beta](https://github.com/microsoftgraph/msgraph-beta-sdk-python) SDK.
7-
>
8-
> * The Microsoft Graph Python SDK is currently in community preview. During this period we're expecting breaking changes to happen to the SDK as we make updates based on feedback. Don't use this SDK in production environments. For details see [SDKs in preview or GA status](https://learn.microsoft.com/en-us/graph/sdks/sdks-overview#sdks-in-preview-or-ga-status).
912
1013
## 1. Installation
1114

1215
```py
1316
pip install msgraph-sdk
1417
```
15-
> Note: 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).
18+
> **Note:**
19+
> * The Microsoft Graph SDK for Python is a fairly large package. It may take a few minutes for the initial installation to complete.
20+
> * 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).
1621
1722
## 2. Getting started with Microsoft Graph
1823

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ authors = [{name = "Microsoft", email = "graphtooling+python@microsoft.com"}]
99
description = "The Microsoft Graph Python SDK"
1010
dependencies = [
1111
"azure-identity >=1.12.0",
12-
"microsoft-kiota-abstractions >=0.9,<0.10 ",
13-
"microsoft-kiota-authentication-azure >=0.3,<0.4",
14-
"microsoft-kiota-serialization-json >=0.4,<0.5",
15-
"microsoft-kiota-serialization-text >=0.3.0",
16-
"microsoft-kiota-http >=0.6,<0.7",
12+
"microsoft-kiota-abstractions >=1.0.0,<2.0.0",
13+
"microsoft-kiota-authentication-azure >=1.0.0,<2.0.0",
14+
"microsoft-kiota-serialization-json >=1.0.0,<2.0.0",
15+
"microsoft-kiota-serialization-text >=1.0.0,<2.0.0",
16+
"microsoft-kiota-http >=1.0.0,<2.0.0",
1717
"msgraph_core >=1.0.0a2"
1818

1919
]
@@ -22,7 +22,7 @@ license = {file = "LICENSE"}
2222
readme = "README.md"
2323
keywords = ["msgraph", "openAPI", "Microsoft", "Graph"]
2424
classifiers = [
25-
"Development Status :: 3 - Alpha",
25+
"Development Status :: 5 - Production/Stable",
2626
"Programming Language :: Python :: 3.8",
2727
"Programming Language :: Python :: 3.9",
2828
"Programming Language :: Python :: 3.10",

requirements-dev.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,15 +94,15 @@ hyperframe==6.0.1 ; python_full_version >= '3.6.1'
9494

9595
idna==3.4 ; python_version >= '3.5'
9696

97-
microsoft-kiota-abstractions==0.9.1
97+
microsoft-kiota-abstractions==1.0.0
9898

99-
microsoft-kiota-authentication-azure==0.3.2
99+
microsoft-kiota-authentication-azure==1.0.0
100100

101-
microsoft-kiota-http==0.6.3
101+
microsoft-kiota-http==1.0.0
102102

103-
microsoft-kiota-serialization-json==0.4.2
103+
microsoft-kiota-serialization-json==1.0.0
104104

105-
microsoft-kiota-serialization-text==0.3.0
105+
microsoft-kiota-serialization-text==1.0.0
106106

107107
msal==1.24.1
108108

0 commit comments

Comments
 (0)