Skip to content

Experiment/request context #87

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
May 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ pre-commit = "==2.10.1"

[dev-packages] # Packages required to develop the application
coverage = "==5.0.3"
azure-identity = "*"
responses = "==0.10.12"
flit = "==2.2.0"
azure-identity = "==1.5.0"
isort = "==5.7.0"
yapf = "==0.30.0"
mypy = "==0.800"
Expand Down
126 changes: 53 additions & 73 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 0 additions & 5 deletions dev_requirements.txt

This file was deleted.

Empty file.
4 changes: 3 additions & 1 deletion msgraphcore/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from .constants import SDK_VERSION
from msgraphcore.client_factory import HTTPClientFactory
from msgraphcore.constants import SDK_VERSION
from msgraphcore.graph_client import GraphClient

__version__ = SDK_VERSION
Loading