Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ dependencies = [
"beautifulsoup4",
"scikit-learn",
"pyyaml",
"pyarrow>=13.0.0",
"pyarrow>=25.0.1",
"xlrd",
"openpyxl>=3.1.0",
"lxml", # pandas.read_html web table extraction
Expand All @@ -53,7 +53,7 @@ dependencies = [
"azure-keyvault-secrets", # kusto
"pymysql", # mysql
"clickhouse-connect", # clickhouse
"mssql-python>=1.11.0", # mssql
"mssql-python>=1.14.0", # mssql
"psycopg2-binary", # postgresql
"boto3", # s3, athena
"google-cloud-bigquery", # bigquery
Expand All @@ -62,7 +62,7 @@ dependencies = [
"databricks-sql-connector", # databricks
# SSO / Auth deps
"PyJWT[crypto]>=2.8.0", # OIDC JWT verification (includes cryptography)
"cryptography>=50.0.0", # Security floor for auth and local vault encryption
"cryptography>=50.0.1", # Security floor for auth and local vault encryption
"requests", # GitHub OAuth code exchange, Superset API calls
"flask-session>=0.8.0", # Server-side session (SQLite) for TokenStore
"pypdf>=6.16.2",
Expand All @@ -73,9 +73,9 @@ dependencies = [
# Needed for JavaScript single-page apps and pages behind a browser-verification
# challenge that a plain HTTP fetch cannot pass. After installing, also run:
# python -m playwright install chromium
browser = ["playwright>=1.40"]
browser = ["playwright>=1.62.0"]
desktop = [
"pyinstaller>=6.0",
"pyinstaller>=6.22.2",
"pywebview>=5.0",
]

Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ vl-convert-python
beautifulsoup4
scikit-learn
pyyaml
pyarrow>=13.0.0
pyarrow>=25.0.1
xlrd
openpyxl>=3.1.0
lxml
Expand All @@ -29,7 +29,7 @@ azure-kusto-data
azure-keyvault-secrets
pymysql
clickhouse-connect
mssql-python>=1.11.0
mssql-python>=1.14.0
psycopg2-binary
boto3
google-cloud-bigquery
Expand Down
Loading