Skip to content
This repository has been archived by the owner on May 17, 2024. It is now read-only.

Commit

Permalink
Merge pull request #867 from datafold/soft-bind-dependencies
Browse files Browse the repository at this point in the history
Loosen the restrictions of dependencies versions: >= instead of ^ and =
  • Loading branch information
nolar committed Feb 20, 2024
2 parents f2a1b8d + 962c958 commit 99209bd
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 22 deletions.
2 changes: 1 addition & 1 deletion data_diff/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.11.0"
__version__ = "0.11.1"
35 changes: 32 additions & 3 deletions poetry.lock

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

36 changes: 18 additions & 18 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "data-diff"
version = "0.11.0"
version = "0.11.1"
description = "Command-line tool and Python library to efficiently diff rows across two different databases."
authors = ["Datafold <data-diff@datafold.com>"]
license = "MIT"
Expand All @@ -21,47 +21,47 @@ classifiers = [
]
packages = [{ include = "data_diff" }]
[tool.poetry.dependencies]
pydantic = "1.10.12"
python = "^3.8.0"
pydantic = ">=1.10.12"
python = ">=3.8.0,<4.0"
dsnparse = "<0.2.0"
click = "^8.1"
click = ">=8.1"
rich = "*"
toml = "^0.10.2"
mysql-connector-python = {version="8.0.29", optional=true}
toml = ">=0.10.2"
mysql-connector-python = {version=">=8.0.29", optional=true}
psycopg2 = {version="*", optional=true}
snowflake-connector-python = {version = ">=3.0.2,<4.0.0", optional=true}
cryptography = {version="*", optional=true}
trino = {version="^0.314.0", optional=true}
trino = {version=">=0.314.0", optional=true}
presto-python-client = {version="*", optional=true}
clickhouse-driver = {version="*", optional=true}
duckdb = {version="*", optional=true}
dbt-core = {version="^1.0.0"}
keyring = "*"
tabulate = "^0.9.0"
preql = {version="^0.2.19", optional=true}
tabulate = ">=0.9.0"
preql = {version=">=0.2.19", optional=true}
vertica-python = {version="*", optional=true}
urllib3 = "<2"
oracledb = {version = "*", optional=true}
pyodbc = {version="^4.0.39", optional=true}
pyodbc = {version=">=4.0.39", optional=true}
typing-extensions = ">=4.0.1"
attrs = "^23.1.0"
attrs = ">=23.1.0"
mashumaro = {version = ">=2.9,<3.11.0", extras = ["msgpack"]}

[tool.poetry.dev-dependencies]
parameterized = "*"
unittest-parallel = "*"
preql = "^0.2.19"
preql = ">=0.2.19"
mysql-connector-python = "*"
psycopg2 = "*"
snowflake-connector-python = ">=3.0.2,<4.0.0"
cryptography = "*"
trino = "^0.314.0"
presto-python-client = "0.8.3"
trino = ">=0.314.0"
presto-python-client = ">=0.8.3"
clickhouse-driver = "*"
vertica-python = "*"
duckdb = "^0.9.0"
dbt-core = "^1.0.0"
ruff = "^0.1.4"
duckdb = ">=0.9.0"
dbt-core = ">=1.0.0"
ruff = ">=0.1.4"
# google-cloud-bigquery = "*"
# databricks-sql-connector = "*"

Expand All @@ -86,7 +86,7 @@ all-dbs = [
]

[tool.poetry.group.dev.dependencies]
pre-commit = "^3.5.0"
pre-commit = ">=3.5.0"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down

0 comments on commit 99209bd

Please sign in to comment.