-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed versioning in pyproject.toml
- Loading branch information
1 parent
8db3fd0
commit 3d1ef79
Showing
3 changed files
with
5 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
[tool.poetry] | ||
name = "databricks-sql-connector" | ||
version = "4.0.0.b0" | ||
version = "4.0.0.b1" | ||
description = "Databricks SQL Connector for Python" | ||
authors = ["Databricks <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
||
|
||
[tool.poetry.dependencies] | ||
databricks_sql_connector_core = { version = ">=4.0.0", extras=["all"]} | ||
databricks_sqlalchemy = { version = ">=4.0.0", optional = true } | ||
python = "^3.8.0" | ||
databricks_sql_connector_core = { version = ">=4.0.0", extras=["pyarrow"]} | ||
databricks_sqlalchemy = { version = ">=1.0.0", optional = true } | ||
|
||
[tool.poetry.extras] | ||
databricks_sqlalchemy = ["databricks_sqlalchemy"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "databricks-sql-connector-core" | ||
version = "4.0.0.b0" | ||
version = "4.0.1" | ||
description = "Databricks SQL Connector core for Python" | ||
authors = ["Databricks <[email protected]>"] | ||
packages = [{ include = "databricks", from = "src" }] | ||
|