Skip to content

Commit 133fa57

Browse files
authored
Merge branch 'dev' into users/GitHubPolicyService/61e2c0d5-7054-471d-b533-df2b1d2fb503
2 parents 98008f6 + 1dd3e94 commit 133fa57

19 files changed

+515
-416
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: [3.5, 3.6, 3.7, 3.8]
15+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
1616

1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v3
1919
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v1
20+
uses: actions/setup-python@v4
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
- name: Install dependencies

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v3
1515
- name: Set up Python 3.8
16-
uses: actions/setup-python@v1
16+
uses: actions/setup-python@v4
1717
with:
1818
python-version: 3.8
1919
- name: Install flit

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v3
1515
with:
1616
fetch-depth: 0
1717
- name: Set up Python 3.8
18-
uses: actions/setup-python@v1
18+
uses: actions/setup-python@v4
1919
with:
2020
python-version: 3.8
2121
- name: Release Notes

.isort.cfg

Lines changed: 0 additions & 2 deletions
This file was deleted.

.style.yapf

Lines changed: 0 additions & 5 deletions
This file was deleted.

Pipfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ verify_ssl = true
44
name = "pypi"
55

66
[packages] # Packages required to run the application
7-
requests = "==2.26.0"
7+
requests = "==2.28.1"
88

99
[dev-packages] # Packages required to develop the application
10-
coverage = "==5.0.3"
11-
responses = "==0.10.12"
12-
flit = "==2.2.0"
13-
isort = "==5.7.0"
14-
yapf = "==0.30.0"
15-
mypy = "==0.800"
10+
coverage = "==6.5.0"
11+
responses = "==0.22.0"
12+
flit = "==3.7.1"
13+
isort = "==5.10.0"
14+
yapf = "==0.32.0"
15+
mypy = "==0.982"
1616
pylint = "==2.7.4"
17-
pytest = "==6.2.4"
18-
pre-commit = "==2.13.0"
17+
pytest = "==7.1.3"
18+
pre-commit = "==2.20.0"
1919
azure-identity = "*"

Pipfile.lock

Lines changed: 442 additions & 380 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

msgraph/core/_client_factory.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ class HTTPClientFactory:
3434
be applied to both the connect and the read timeouts.
3535
:keyword obj session: A custom Session instance from the python requests library
3636
"""
37+
3738
def __init__(self, **kwargs):
3839
"""Class constructor that accepts a user provided session object and kwargs
3940
to configure the request handling behaviour of the client"""

msgraph/core/_graph_client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929

3030
def collect_options(func):
3131
"""Collect middleware options into a middleware control dict and pass it as a header"""
32+
3233
def wrapper(*args, **kwargs):
3334

3435
middleware_control = dict()

msgraph/core/middleware/abc_token_credential.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77

88
class TokenCredential(ABC):
9+
910
@abstractmethod
1011
def get_token(self, *scopes, **kwargs):
1112
pass

0 commit comments

Comments
 (0)