Skip to content

Commit

Permalink
CM-38264 - Fix certification validation (#236)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarshalX authored Jul 18, 2024
1 parent 4f3e62c commit 996d405
Show file tree
Hide file tree
Showing 3 changed files with 119 additions and 20 deletions.
4 changes: 4 additions & 0 deletions cycode/cli/main.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
from multiprocessing import freeze_support

# DO NOT REMOVE OR MOVE THIS LINE
# this is required to use certificates system store with requests packaged with PyInstaller
import pip_system_certs.wrapt_requests # noqa: F401

from cycode.cli.commands.main_cli import main_cli
from cycode.cli.sentry import add_breadcrumb, init_sentry

Expand Down
134 changes: 114 additions & 20 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ requests = ">=2.24,<3.0"
urllib3 = "1.26.19" # lock v1 to avoid issues with openssl and old Python versions (<3.9.11) on macOS
sentry-sdk = ">=2.8.0,<3.0"
pyjwt = ">=2.8.0,<3.0"
pip-system-certs = ">=4.0,<5.0"

[tool.poetry.group.test.dependencies]
mock = ">=4.0.3,<4.1.0"
Expand Down

0 comments on commit 996d405

Please sign in to comment.