Skip to content

Commit 01fb4b4

Browse files
committed
Dependency clean-up
Restrict `dash` pending bug investigation. Remove `sentry-sdk`. Explicitly add `emmet-core` that does not have a matminer dependency.
1 parent d5cd41b commit 01fb4b4

File tree

4 files changed

+1526
-1350
lines changed

4 files changed

+1526
-1350
lines changed

crystal_toolkit/apps/main.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
from uuid import uuid4
99

1010
import dash
11-
import sentry_sdk
1211
from dash import dcc, html
1312
from dash.dependencies import Input, Output, State
1413
from dash.exceptions import PreventUpdate
@@ -90,10 +89,6 @@
9089
app.server.secret_key = str(uuid4())
9190
server = app.server
9291

93-
# logging of errors
94-
if SETTINGS.SENTRY_DSN:
95-
sentry_sdk.init(SETTINGS.SENTRY_DSN)
96-
9792
# endregion
9893
###########
9994

crystal_toolkit/settings.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ class Settings(BaseSettings):
2323
PERSISTENCE: bool = True
2424
PERSISTENCE_TYPE: Literal["memory", "session", "local"] = "local"
2525

26-
SENTRY_DSN: Optional[str] = None
27-
2826
class Config:
2927
env_prefix = "CT_"
3028

0 commit comments

Comments
 (0)