blob: 5873743d76bb6fe69c2e1a16f0e5a0c8d4aeb9fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
Description: To verify SSL certificates for HTTPS requests, use the bundle
provided by ca-certificates instead of python-certifi. Since requests 0.11.2
it is not needed to hard-code bundle path because requests will search for it.
Author: Daniele Tricoli <eriol@mornie.org>
Forwarded: not-needed
Last-Update: 2012-04-23
--- a/setup.py
+++ b/setup.py
@@ -21,7 +21,7 @@
os.system('python tests/test_requests.py')
sys.exit()
-required = ['certifi>=0.0.7',]
+required = []
packages = [
'requests',
'requests.packages',
|