This repository has been archived by the owner on Aug 29, 2019. It is now read-only.
forked from RamosAlvarez/AWeber-API-Python-Library
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove embedded CA certificate, upgrade httplib2
PAPI-175 The workaround of embedding the CA certificate is no longer needed. It needs to be removed as it does not work with our new SSL certs.
- Loading branch information
Vraj Mohan
committed
Nov 20, 2014
1 parent
e593540
commit 68a1017
Showing
5 changed files
with
6 additions
and
24 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
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,4 +1,3 @@ | ||
include *.py | ||
include *.rst | ||
include aweber_api/cacert.crt | ||
include LICENSE |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
|
||
setup( | ||
name='aweber_api', | ||
version='1.2.0', | ||
version='1.2.1', | ||
author='AWeber Dev Team', | ||
author_email='[email protected]', | ||
maintainer='AWeber API Team', | ||
|
@@ -28,7 +28,7 @@ | |
], | ||
packages=find_packages(exclude=['tests']), | ||
install_requires=[ | ||
'httplib2>=0.7.0,<=0.8.0', | ||
'httplib2>=0.9.0,<=0.10.0', | ||
'oauth2>=1.2', | ||
], | ||
tests_require=[ | ||
|