Added setup script and fixes for building with py2
This commit is contained in:
6
src/fixes/__init__.py
Normal file
6
src/fixes/__init__.py
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
import sys
|
||||
import fix_requests
|
||||
|
||||
def setup():
|
||||
fix_requests.fix()
|
12
src/fixes/fix_requests.py
Normal file
12
src/fixes/fix_requests.py
Normal file
@@ -0,0 +1,12 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
import requests
|
||||
import os
|
||||
import logging
|
||||
from platform_utils import paths
|
||||
|
||||
log = logging.getLogger("fixes.fix_requests")
|
||||
|
||||
def fix():
|
||||
log.debug("Applying fix for requests...")
|
||||
os.environ["REQUESTS_CA_BUNDLE"] = os.path.join(paths.app_path(), "cacert.pem")
|
||||
log.debug("Changed CA path to %s" % (os.environ["REQUESTS_CA_BUNDLE"],))
|
Reference in New Issue
Block a user