Skip to content

Commit 3d1ef79

Browse files
committed
Changed versioning in pyproject.toml
1 parent 8db3fd0 commit 3d1ef79

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

.github/workflows/publish-manual.yml

-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ name: Publish to PyPI Manual [Production]
33
# Allow manual triggering of the workflow
44
on:
55
workflow_dispatch: {}
6-
push:
7-
branches:
8-
- 'PECO-1803/connector-split'
96

107
jobs:
118
publish:

databricks_sql_connector/pyproject.toml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
[tool.poetry]
22
name = "databricks-sql-connector"
3-
version = "4.0.0.b0"
3+
version = "4.0.0.b1"
44
description = "Databricks SQL Connector for Python"
55
authors = ["Databricks <[email protected]>"]
66
license = "Apache-2.0"
77

88

99
[tool.poetry.dependencies]
10-
databricks_sql_connector_core = { version = ">=4.0.0", extras=["all"]}
11-
databricks_sqlalchemy = { version = ">=4.0.0", optional = true }
10+
python = "^3.8.0"
11+
databricks_sql_connector_core = { version = ">=4.0.0", extras=["pyarrow"]}
12+
databricks_sqlalchemy = { version = ">=1.0.0", optional = true }
1213

1314
[tool.poetry.extras]
1415
databricks_sqlalchemy = ["databricks_sqlalchemy"]

databricks_sql_connector_core/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "databricks-sql-connector-core"
3-
version = "4.0.0.b0"
3+
version = "4.0.1"
44
description = "Databricks SQL Connector core for Python"
55
authors = ["Databricks <[email protected]>"]
66
packages = [{ include = "databricks", from = "src" }]

0 commit comments

Comments
 (0)