Skip to content

Commit

Permalink
Removing the Sentry SDK depdency to fix the new OctoPrint RC.
Browse files Browse the repository at this point in the history
  • Loading branch information
QuinnDamerell committed Jan 28, 2025
1 parent 6258909 commit 2475946
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# OctoPrint uses the package list in the setup.py file.
#
# BUT, for the most part, the packages should be exactly synced between these sources.
# The only excpetion would be any packages moonraker or OctoPrint depend upon, that the other doesn't.
# The only exception would be any packages moonraker or OctoPrint depend upon, that the other doesn't.
#
# For comments on package lock versions, see the comments in the setup.py file.
#
Expand All @@ -16,7 +16,7 @@ rsa>=4.9
dnspython>=2.3.0
httpx>=0.24.1,<0.26.0
urllib3>=1.26.15,<2.0.0
sentry-sdk>=1.19.1,<2
#sentry-sdk>=1.19.1,<2
#zstandard>=0.22.0,<0.23.0

# The following are required only for Moonraker
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
# certifi - We use to keep certs on the device that we need for let's encrypt. So we want to keep it fresh.
# rsa - OctoPrint 1.5.3 requires RAS>=4.0, so we must leave it at 4.0.
# httpx - Is an asyncio http lib. It seems to be required by dnspython, but dnspython doesn't enforce it. We had a user having an issue that updated to 0.24.0, and it resolved the issue.
# sentry-sdk - We use the same version as OctoPrint, so we don't have to worry about mismatched versions.
# sentry-sdk - We don't use Sentry right now, so we disabled it. It was conflicting with the new OctoPrint RC, so if we add it back, we need to address that.
#
# Note! These also need to stay in sync with requirements.txt, for the most part they should be the exact same!
plugin_requires = [
Expand All @@ -86,7 +86,7 @@
"dnspython>=2.3.0",
"httpx>=0.24.1,<0.26.0",
"urllib3>=1.26.18,<2.0.0",
"sentry-sdk>=1.19.1,<2",
#"sentry-sdk>=TODO",
#"zstandard" - optional lib see notes
]

Expand Down

0 comments on commit 2475946

Please sign in to comment.