summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--databases/py-dbt-core/Makefile4
-rw-r--r--databases/py-dbt-core/files/patch-setup.py6
2 files changed, 6 insertions, 4 deletions
diff --git a/databases/py-dbt-core/Makefile b/databases/py-dbt-core/Makefile
index b0fe888bb01b..d12b8a2b5afd 100644
--- a/databases/py-dbt-core/Makefile
+++ b/databases/py-dbt-core/Makefile
@@ -1,6 +1,6 @@
PORTNAME= dbt-core
DISTVERSION= 1.7.11
-PORTREVISION= 6
+PORTREVISION= 7
CATEGORIES= databases python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@@ -19,7 +19,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}agate>=1.7<2:textproc/py-agate@${PY_FLAVOR}
${PYTHON_PKGNAMEPREFIX}click>=8.0.2<9:devel/py-click@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}networkx>=2.3:math/py-networkx@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}colorama>=0.3.9<0.5:devel/py-colorama@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}pathspec>=0.9<0.13:devel/py-pathspec@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}pathspec>=0.9:devel/py-pathspec@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}isodate>=0.6:devel/py-isodate@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}sqlparse>=0.2.3<0.6:databases/py-sqlparse@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}dbt-extractor>=0.5:devel/py-dbt-extractor@${PY_FLAVOR} \
diff --git a/databases/py-dbt-core/files/patch-setup.py b/databases/py-dbt-core/files/patch-setup.py
index 3496530e5a06..bfceff034870 100644
--- a/databases/py-dbt-core/files/patch-setup.py
+++ b/databases/py-dbt-core/files/patch-setup.py
@@ -1,10 +1,12 @@
--- setup.py.orig 2024-03-28 03:30:09 UTC
+++ setup.py
-@@ -66,9 +66,9 @@ setup(
+@@ -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",
+- "pathspec>=0.9,<0.12",
- "isodate>=0.6,<0.7",
++ "pathspec>=0.9",
+ "isodate>=0.6",
# ----
- "sqlparse>=0.2.3,<0.5",