Skip to content

Commit cd48e1b

Browse files
committed
Dependencies: Update to cratedb-toolkit 0.0.33
Renamed CLI option --cratedb-sqlalchemy-url to --cratedb-cluster-url and environment variable CRATEDB_SQLALCHEMY_URL to CRATEDB_CLUSTER_URL.
1 parent 5af7e07 commit cd48e1b

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-12
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
crate>=2.0.0.dev6
2-
cratedb-toolkit[influxdb,mongodb]>=0.0.30
2+
cratedb-toolkit[influxdb,mongodb]>=0.0.33

application/cratedb-toolkit/test_io.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def test_ctk_load_table_influxdb_lp(drop_testing_tables):
8888
command = f"""
8989
ctk load table \
9090
"{influxdb_lp_url}" \
91-
--cratedb-sqlalchemy-url="crate://localhost:4200/from-influxdb/air-sensor-data"
91+
--cratedb-cluster-url="crate://localhost:4200/from-influxdb/air-sensor-data"
9292
"""
9393
print(f"Invoking CTK: {command}", file=sys.stderr)
9494
subprocess.check_call(shlex.split(command))
@@ -144,7 +144,7 @@ def test_ctk_load_table_mongodb_json(drop_testing_tables):
144144
command = f"""
145145
ctk load table \
146146
"file+bson://{datasets_path}/*.json?batch-size=2500" \
147-
--cratedb-sqlalchemy-url="crate://localhost:4200/from-mongodb" \
147+
--cratedb-cluster-url="crate://localhost:4200/from-mongodb" \
148148
--transformation=zyp-mongodb-json-files.yaml
149149
"""
150150
print(f"Invoking CTK: {command}", file=sys.stderr)

framework/mcp/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ which is applicable for all sorts of driver, adapter, and connector explorations
123123
After providing authentication information, just use uv's `uvx` launcher to invoke
124124
CrateDB Toolkit's tail command without installation.
125125
```shell
126-
export CRATEDB_SQLALCHEMY_URL=crate://crate@localhost:4200/
126+
export CRATEDB_CLUSTER_URL=crate://crate@localhost:4200/
127127
```
128128
```shell
129129
uvx --from=cratedb-toolkit ctk tail -n 3 --follow --format=log-pretty sys.jobs_log

framework/mcp/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cratedb-mcp @ git+https://github.com/crate/cratedb-mcp@main
2-
cratedb-toolkit
2+
cratedb-toolkit>=0.0.33
33
mcp<1.7
44
mcp-alchemy~=2025.4
55
sqlalchemy-cratedb>=0.42.0.dev2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
crash>=0.31.5
22
crate>=2.0.0.dev6
3-
cratedb-toolkit[testing]>=0.0.29
3+
cratedb-toolkit[testing]>=0.0.33
44
pytest<9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
crash>=0.31.5
22
crate>=2.0.0.dev6
3-
cratedb-toolkit[testing]>=0.0.29
3+
cratedb-toolkit[testing]>=0.0.33

topic/machine-learning/automl/requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Real.
2-
cratedb-toolkit[io]>=0.0.29
2+
cratedb-toolkit[io]>=0.0.33
33
pueblo[notebook,testing]>=0.0.10
44

55
# Development.
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
cratedb-toolkit
1+
cratedb-toolkit>=0.0.33
22
pueblo[testing]
33
sqlparse

topic/machine-learning/llm-langchain/requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Production.
2-
cratedb-toolkit[io]
2+
cratedb-toolkit[io]>=0.0.33
33
pueblo[notebook,testing]
44

55
# Staging.

topic/machine-learning/mlops-mlflow/requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Real.
2-
cratedb-toolkit[io]>=0.0.29
2+
cratedb-toolkit[io]>=0.0.33
33
pueblo[notebook,testing]>=0.0.10
44

55
# Development.

topic/timeseries/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cratedb-toolkit[datasets]>=0.0.30
1+
cratedb-toolkit[datasets]>=0.0.33
22
refinitiv-data<1.7
33
pandas==2.0.*
44
pycaret==3.3.2

0 commit comments

Comments
 (0)