Files
ports/databases/py-dbt-core/files/patch-setup.py
Matthew Seaman 68ab564d21 databases/py-dbt-core: chase update to py-pathspec
Remove upper version limit on py-pathspec dependency now that
py-pathspec has reached version 1.0.2

PR:		292268
Approved by:	Pat Maddox (maintainer)
2026-01-12 22:20:18 +00:00

25 lines
929 B
Python

--- setup.py.orig 2024-03-28 03:30:09 UTC
+++ setup.py
@@ -65,10 +65,10 @@ setup(
# These packages are major-version-0. Keep upper bounds on upcoming minor versions (which could have breaking changes)
# and check compatibility / bump in each new minor version of dbt-core.
"colorama>=0.3.9,<0.5",
- "pathspec>=0.9,<0.12",
- "isodate>=0.6,<0.7",
+ "pathspec>=0.9",
+ "isodate>=0.6",
# ----
- "sqlparse>=0.2.3,<0.5",
+ "sqlparse>=0.2.3,<0.6",
# ----
# These are major-version-0 packages also maintained by dbt-labs. Accept patches.
"dbt-extractor~=0.5.0",
@@ -85,7 +85,6 @@ setup(
"typing-extensions>=3.7.4",
# ----
# Match snowflake-connector-python, to ensure compatibility in dbt-snowflake
- "cffi>=1.9,<2.0.0",
"idna>=2.5,<4",
"requests<3.0.0",
"urllib3~=1.0",