Skip to content

Commit 6414c9d

Browse files
committed
GA release
1 parent 657a9d5 commit 6414c9d

File tree

4 files changed

+28
-13
lines changed

4 files changed

+28
-13
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.0rc0] - 2023-10-27
916

1017
### Added

README.md

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

3-
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.
8+
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.
49

510
> **Note:**
611
> * 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.
7-
> * The Microsoft Graph Beta Python SDK is currently in public preview. 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).
812
913
## 1. Installation
1014

1115
```py
1216
pip install msgraph-beta-sdk
1317
```
18+
> **Note:**
19+
> * The Microsoft Graph Beta 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).
1421
1522
## 2. Getting started with Microsoft Graph
1623

pyproject.toml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,20 @@ authors = [{name = "Microsoft", email = "[email protected]"}]
99
description = "The Microsoft Graph Beta 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.4",
16-
"msgraph_core >=1.0.0a2"
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",
17+
"msgraph_core >=1.0.0a4"
1718

1819
]
1920
requires-python = ">=3.8"
2021
license = {file = "LICENSE"}
2122
readme = "README.md"
2223
keywords = ["msgraph", "openAPI", "Microsoft", "Graph", "beta"]
2324
classifiers = [
24-
"Development Status :: 3 - Alpha",
25+
"Development Status :: 5 - Production/Stable",
2526
"Programming Language :: Python :: 3.8",
2627
"Programming Language :: Python :: 3.9",
2728
"Programming Language :: Python :: 3.10",

requirements-dev.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ idna==3.4
4242

4343
importlib-metadata==6.8.0
4444

45-
microsoft-kiota-abstractions==0.9.1
45+
microsoft-kiota-abstractions==1.0.0
4646

47-
microsoft-kiota-authentication-azure==0.3.2
47+
microsoft-kiota-authentication-azure==1.0.0
4848

49-
microsoft-kiota-http==0.6.3
49+
microsoft-kiota-http==1.0.0
5050

51-
microsoft-kiota-serialization-json==0.4.2
51+
microsoft-kiota-serialization-json==1.0.0
5252

53-
microsoft-kiota-serialization-text==0.3.0
53+
microsoft-kiota-serialization-text==1.0.0
5454

5555
msal==1.24.1
5656

0 commit comments

Comments
 (0)