Skip to content

Commit 6e4377a

Browse files
authored
Merge branch 'main' into v1.0/pipelinebuild/151773
2 parents c3be055 + 47f1b25 commit 6e4377a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/project-auto-add.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ on:
99
types:
1010
- opened
1111
branches:
12-
- 'main'
12+
- "main"
1313

1414
jobs:
1515
track_issue:
16-
if: github.actor != 'dependabot[bot]'
16+
if: github.actor != 'dependabot[bot]' && !github.event.pull_request.head.repo.fork
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Generate token

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ client = GraphServiceClient(credentials=credentials, scopes=scopes)
107107

108108
After you have a **GraphServiceClient** that is authenticated, you can begin making calls against the service. The requests against the service look like our [REST API](https://docs.microsoft.com/graph/api/overview?view=graph-rest-1.0).
109109

110-
> **Note**: This SDK offers an asynchronous API by default. Async is a concurrency model that is far more efficient than multi-threading, and can provide significant performance benefits and enable the use of long-lived network connections such as WebSockets. We support popular python async envronments such as `asyncio`, `anyio` or `trio`.
110+
> **Note**: This SDK offers an asynchronous API by default. Async is a concurrency model that is far more efficient than multi-threading, and can provide significant performance benefits and enable the use of long-lived network connections such as WebSockets. We support popular python async environments such as `asyncio`, `anyio` or `trio`.
111111
112112
The following is a complete example that shows how to fetch a user from Microsoft Graph.
113113

requirements-dev.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ mypy==1.10.0
2828

2929
mypy-extensions==1.0.0 ; python_version >= '3.5'
3030

31-
packaging==24.0 ; python_version >= '3.7'
31+
packaging==24.1 ; python_version >= '3.7'
3232

3333
pathlib2==2.3.7.post1
3434

3535
platformdirs==4.2.2 ; python_version >= '3.7'
3636

37-
pylint==3.2.2
37+
pylint==3.2.3
3838

3939
pyproject-hooks==1.1.0 ; python_version >= '3.7'
4040

@@ -48,7 +48,7 @@ tomli==2.0.1 ; python_version >= '3.7'
4848

4949
tomlkit==0.12.5 ; python_version >= '3.7'
5050

51-
typing-extensions==4.12.1 ; python_version >= '3.7'
51+
typing-extensions==4.12.2 ; python_version >= '3.7'
5252

5353
wrapt==1.16.0 ; python_version >= '3.11'
5454

@@ -66,7 +66,7 @@ async-timeout==4.0.3 ; python_version >= '3.6'
6666

6767
attrs==23.2.0 ; python_version >= '3.7'
6868

69-
azure-core==1.30.1 ; python_version >= '3.7'
69+
azure-core==1.30.2 ; python_version >= '3.7'
7070

7171
azure-identity==1.16.0
7272

0 commit comments

Comments
 (0)