Skip to content
Draft
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

### Added
- New `databricks-runtime` extra that excludes `pyspark` (provided by the Databricks Runtime environment). Install with `pip install "datacontract-cli[databricks-runtime]"` when running the CLI inside Databricks notebooks or jobs. The `databricks` extra remains unchanged for use outside Databricks.

### Fixed
- `changelog` command help text now advertises `(url or path)` for V1/V2 arguments, clarifying that HTTP/HTTPS URLs are accepted (#1162)
- **breaking:** `test` command now exits non-zero when a server is specified, but soda-core fails to connect or authenticate (#1181)
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ A list of available extras:
| Avro Support | `pip install datacontract-cli[avro]` |
| Google BigQuery | `pip install datacontract-cli[bigquery]` |
| Databricks Integration | `pip install datacontract-cli[databricks]` |
| Databricks Runtime | `pip install datacontract-cli[databricks-runtime]` (use inside Databricks where pyspark is pre-installed) |
| DuckDB (local/S3/GCS/Azure file testing) | `pip install datacontract-cli[duckdb]` |
| Iceberg | `pip install datacontract-cli[iceberg]` |
| Kafka Integration | `pip install datacontract-cli[kafka]` |
Expand Down
9 changes: 8 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,13 @@ databricks = [
"pyspark>=3.5.0,<5.0.0",
]

databricks-runtime = [
"soda-core-spark-df>=3.3.20,<3.6.0",
"soda-core-spark[databricks]>=3.3.20,<3.6.0",
"databricks-sql-connector>=3.7.0,<4.3.0",
"databricks-sdk<0.106.0",
]

iceberg = [
"pyiceberg==0.11.1"
]
Expand Down Expand Up @@ -192,4 +199,4 @@ extend-select = [
]

[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "F403"]
"__init__.py" = ["F401", "F403"]
Loading