1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-11-24 04:31:31 +03:00

fix(python bridge): include requests.certs file

This commit is contained in:
Divlo 2023-04-23 22:32:43 +02:00
parent 9a66b677e0
commit 07d2a41ecb
No known key found for this signature in database
GPG Key ID: 8F9478F220CE65E9

View File

@ -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')]
}
}