-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CSC-5399 Utilise requests library (#31)
* CSC-5399 Change SSL config * CSC-5399 Change TLS to 1.2 * CSC-5403 Add retries for SSLEOFError * CSC-5403 Add max_entries param to contacts delta_list * CSC-5399 Two way sync fails with SSLEOFError * CSC-5439 The Send later functionality doesn't work in Outlook - Attempts to send the delayed email have failed --------- Co-authored-by: Andrew Matsukov <[email protected]>
- Loading branch information
1 parent
d8edf24
commit f0040c4
Showing
6 changed files
with
69 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
*.pyc | ||
.vscode/* | ||
.venv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
oauth2client==4.1.3 | ||
requests>=2.31.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# -*- coding: utf-8 -*- | ||
from setuptools import setup, find_packages | ||
|
||
from setuptools import find_packages, setup | ||
|
||
setup(name='office365-rest-client', | ||
version='3.2.2', | ||
description='Python api wrapper for Office365 API v3.2.2', | ||
version='3.3.0', | ||
description='Python api wrapper for Office365 API v3.3.0', | ||
author='SugarCRM', | ||
packages=find_packages(), | ||
install_requires=[ | ||
'oauth2client>=4.0.0' | ||
'oauth2client>=4.0.0', | ||
'requests>=2.31.0', | ||
], | ||
zip_safe=False) |