Skip to content

Commit

Permalink
GA release
Browse files Browse the repository at this point in the history
  • Loading branch information
samwelkanda committed Oct 31, 2023
1 parent 8d77226 commit 0fffebf
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 14 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.0] - 2023-10-31

### Added

### Changed
- GA Release.

## [1.0.0rc1] - 2023-10-30

### Added
Expand Down
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
[![PyPI version](https://badge.fury.io/py/msgraph-sdk.svg)](https://badge.fury.io/py/msgraph-sdk)
[![Downloads](https://pepy.tech/badge/msgraph-sdk)](https://pepy.tech/project/msgraph-sdk)
[![Supported Versions](https://img.shields.io/pypi/pyversions/msgraph-sdk.svg)](https://pypi.org/project/msgraph-sdk)
[![Contributors](https://img.shields.io/github/contributors/microsoftgraph/msgraph-sdk-python.svg)](https://github.com/microsoftgraph/msgraph-sdk-python/graphs/contributors)

# Microsoft Graph SDK for Python

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.

> **Note:**
> * 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.
>
> * 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).
## 1. Installation

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

Expand Down
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ authors = [{name = "Microsoft", email = "graphtooling+python@microsoft.com"}]
description = "The Microsoft Graph Python SDK"
dependencies = [
"azure-identity >=1.12.0",
"microsoft-kiota-abstractions >=0.9,<0.10 ",
"microsoft-kiota-authentication-azure >=0.3,<0.4",
"microsoft-kiota-serialization-json >=0.4,<0.5",
"microsoft-kiota-serialization-text >=0.3.0",
"microsoft-kiota-http >=0.6,<0.7",
"microsoft-kiota-abstractions >=1.0.0,<2.0.0",
"microsoft-kiota-authentication-azure >=1.0.0,<2.0.0",
"microsoft-kiota-serialization-json >=1.0.0,<2.0.0",
"microsoft-kiota-serialization-text >=1.0.0,<2.0.0",
"microsoft-kiota-http >=1.0.0,<2.0.0",
"msgraph_core >=1.0.0a2"

]
Expand All @@ -22,7 +22,7 @@ license = {file = "LICENSE"}
readme = "README.md"
keywords = ["msgraph", "openAPI", "Microsoft", "Graph"]
classifiers = [
"Development Status :: 3 - Alpha",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down
10 changes: 5 additions & 5 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,15 @@ hyperframe==6.0.1 ; python_full_version >= '3.6.1'

idna==3.4 ; python_version >= '3.5'

microsoft-kiota-abstractions==0.9.1
microsoft-kiota-abstractions==1.0.0

microsoft-kiota-authentication-azure==0.3.2
microsoft-kiota-authentication-azure==1.0.0

microsoft-kiota-http==0.6.3
microsoft-kiota-http==1.0.0

microsoft-kiota-serialization-json==0.4.2
microsoft-kiota-serialization-json==1.0.0

microsoft-kiota-serialization-text==0.3.0
microsoft-kiota-serialization-text==1.0.0

msal==1.24.1

Expand Down

0 comments on commit 0fffebf

Please sign in to comment.