Skip to content

Commit

Permalink
chore(deps): make rich optional
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Jul 16, 2024
1 parent e7d1811 commit 81d4d14
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 36 deletions.
42 changes: 21 additions & 21 deletions poetry.lock

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

66 changes: 51 additions & 15 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -152,13 +152,15 @@ bigquery = [
"pydata-google-auth",
"numpy",
"pandas",
"rich",
]
clickhouse = [
"clickhouse-connect",
"pyarrow",
"pyarrow-hotfix",
"numpy",
"pandas",
"rich",
]
dask = [
"dask",
Expand All @@ -167,45 +169,79 @@ dask = [
"pyarrow",
"pyarrow-hotfix",
"numpy",
'pandas',
"pandas",
"rich",
]
datafusion = [
"datafusion",
"pyarrow",
"pyarrow-hotfix",
"numpy",
"pandas",
"rich",
]
datafusion = ["datafusion", "pyarrow", "pyarrow-hotfix", "numpy", "pandas"]
druid = ["pydruid", "pyarrow", "pyarrow-hotfix", "numpy", "pandas"]
duckdb = ["duckdb", "pyarrow", "pyarrow-hotfix", "numpy", "pandas"]
exasol = ["pyexasol", "pyarrow", "pyarrow-hotfix", "numpy", "pandas"]
flink = ["pyarrow", "pyarrow-hotfix", "numpy", "pandas"]
impala = ["impyla", "pyarrow", "pyarrow-hotfix", "numpy", "pandas"]
mssql = ["pyodbc", "pyarrow", "pyarrow-hotfix", "numpy", "pandas"]
mysql = ["pymysql", "pyarrow", "pyarrow-hotfix", "numpy", "pandas"]
druid = ["pydruid", "pyarrow", "pyarrow-hotfix", "numpy", "pandas", "rich"]
duckdb = ["duckdb", "pyarrow", "pyarrow-hotfix", "numpy", "pandas", "rich"]
exasol = ["pyexasol", "pyarrow", "pyarrow-hotfix", "numpy", "pandas", "rich"]
flink = ["pyarrow", "pyarrow-hotfix", "numpy", "pandas", "rich"]
impala = ["impyla", "pyarrow", "pyarrow-hotfix", "numpy", "pandas", "rich"]
mssql = ["pyodbc", "pyarrow", "pyarrow-hotfix", "numpy", "pandas", "rich"]
mysql = ["pymysql", "pyarrow", "pyarrow-hotfix", "numpy", "pandas", "rich"]
oracle = [
"oracledb",
"packaging",
"pyarrow",
"pyarrow-hotfix",
"numpy",
"pandas",
"rich",
]
pandas = [
"regex",
"packaging",
"pyarrow",
"pyarrow-hotfix",
"numpy",
"pandas",
"rich",
]
polars = [
"polars",
"packaging",
"pyarrow",
"pyarrow-hotfix",
"numpy",
"pandas",
"rich",
]
pandas = ["regex", "packaging", "pyarrow", "pyarrow-hotfix", "numpy", "pandas"]
polars = ["polars", "packaging", "pyarrow", "pyarrow-hotfix", "numpy", "pandas"]
postgres = ["psycopg2", "pyarrow", "pyarrow-hotfix", "numpy", "pandas"]
postgres = ["psycopg2", "pyarrow", "pyarrow-hotfix", "numpy", "pandas", "rich"]
pyspark = [
"pyspark",
"packaging",
"pyarrow",
"pyarrow-hotfix",
"numpy",
"pandas",
"rich",
]
snowflake = [
"snowflake-connector-python",
"pyarrow",
"pyarrow-hotfix",
"numpy",
"pandas",
"rich",
]
sqlite = ["regex", "pyarrow", "pyarrow-hotfix", "numpy", "pandas", "rich"]
risingwave = [
"psycopg2",
"pyarrow",
"pyarrow-hotfix",
"numpy",
"pandas",
"rich",
]
sqlite = ["regex", "pyarrow", "pyarrow-hotfix", "numpy", "pandas"]
risingwave = ["psycopg2", "pyarrow", "pyarrow-hotfix", "numpy", "pandas"]
trino = ["trino", "pyarrow", "pyarrow-hotfix", "numpy", "pandas"]
trino = ["trino", "pyarrow", "pyarrow-hotfix", "numpy", "pandas", "rich"]
# non-backend extras
visualization = ["graphviz"]
decompiler = ["black"]
Expand Down

0 comments on commit 81d4d14

Please sign in to comment.