From b9445b60cb0a1abd1bc437f213a284dfa03fbb74 Mon Sep 17 00:00:00 2001 From: Jason Gunthorpe Date: Sun, 14 Jun 2020 22:15:03 -0300 Subject: O365: Stop using MSAL for OAUTH Since gmail figured out how to use oauth using asyncio and oauthlib, just use it for the O365 flow too. This greatly speeds up refreshing tickets since both graph and OWA scopes can run in parallel. This also makes the dependency list small enough the tool will run with built-in python modules for most distros. Signed-off-by: Jason Gunthorpe --- cloud-mdir-sync | 2 -- 1 file changed, 2 deletions(-) (limited to 'cloud-mdir-sync') diff --git a/cloud-mdir-sync b/cloud-mdir-sync index 4492bf7..483874b 100755 --- a/cloud-mdir-sync +++ b/cloud-mdir-sync @@ -9,8 +9,6 @@ if [ ! -f "$VENV/bin/activate" ]; then python3 -m venv "$VENV" echo '*' > "$VENV/.gitignore" source "$VENV/bin/activate" - # MSAL doesn't work with old PIPs, they document that at least this one - # works. pip install --upgrade 'pip>=18.1' pip install -e $(dirname "$BASH_SOURCE") # Developer tools -- cgit v1.2.3