From 07d2a41ecbbb398aa26138545b41c0fb6c129111 Mon Sep 17 00:00:00 2001 From: Divlo Date: Sun, 23 Apr 2023 22:32:43 +0200 Subject: [PATCH] fix(python bridge): include requests.certs file --- bridges/python/src/setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bridges/python/src/setup.py b/bridges/python/src/setup.py index c37e243f..a833c11d 100644 --- a/bridges/python/src/setup.py +++ b/bridges/python/src/setup.py @@ -1,4 +1,5 @@ from cx_Freeze import setup, Executable +import requests.certs from version import __version__ @@ -8,7 +9,8 @@ options = { 'includes': [ 'bs4', 'pytube' - ] + ], + 'include_files': [(requests.certs.where(), 'cacert.pem')] } }