Skip to content

Commit

Permalink
move adbc to optional argument
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonLuttenberger committed Apr 23, 2024
1 parent 1f23ddf commit e8187d2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 3 additions & 2 deletions poetry.lock

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

4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ pg8000 = { version = "^1.29.0", optional = true }
pyodbc = { version = ">=4,<6", optional = true }
oracledb = { version = ">=1,<3", optional = true }

# ArrowDBC
adbc-driver-postgresql = { version = "^0.11.0", optional = true }

# Graph
Expand Down Expand Up @@ -86,9 +87,10 @@ ray = { version = "^2.10.0", extras = ["default", "data"], optional = true }
[tool.poetry.extras]
redshift = ["redshift-connector"]
mysql = ["pymysql"]
postgres = ["pg8000", "adbc-driver-postgresql"]
postgres = ["pg8000"]
sqlserver = ["pyodbc"]
oracle = ["oracledb"]
adbc = ["adbc-driver-postgresql"]
gremlin = ["gremlinpython", "requests", "aiohttp", "async-timeout"]
sparql = ["SPARQLWrapper", "requests"]
opencypher = ["requests"]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ setenv =
COV_FAIL_UNDER = 87.00
allowlist_externals = poetry
commands_pre =
poetry install --no-root --sync --extras "deltalake gremlin mysql opencypher opensearch oracle postgres redshift sparql sqlserver geopandas"
poetry install --no-root --sync --extras "deltalake gremlin mysql opencypher opensearch oracle postgres adbc redshift sparql sqlserver geopandas"
commands =
pytest -n {posargs} -s -v --timeout=300 --reruns=2 --reruns-delay=15 \
--cov=awswrangler --cov-report=xml --cov-report term-missing --cov-branch \
Expand Down

0 comments on commit e8187d2

Please sign in to comment.