-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: SSL error in bundled/frozen application
Depending on the packaged libcrypto on Unix systems the cacerts default paths might differ (see: pyinstaller/pyinstaller#7229). To get an actually portable solution we use certifi's bundled cacerts (CAs approved by Mozilla). Since that is not what users may want and the bundled cacerts might be outdated we added a config option for this, so a user can set the environment variable `SSL_CERT_FILE` themselves
- Loading branch information
Showing
4 changed files
with
22 additions
and
2 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
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 |
---|---|---|
|
@@ -4,3 +4,4 @@ praw>=7.5,<8 | |
flask>=2.2.5,<4 | ||
music-tag>=0.4,<0.5 | ||
typing-extensions>=3.7.4 | ||
certifi |
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