diff options
author | Gerard Ribugent | 2023-05-05 11:32:39 +0200 |
---|---|---|
committer | Gerard Ribugent | 2023-05-05 11:32:39 +0200 |
commit | adfd3b594e258f4824df4605470f2c3229d7b157 (patch) | |
tree | 81c57be628babc76a73b7f5e97793d0f936166bb | |
parent | 0cd486f730d9421a98bc9e43dc05851e1feb7702 (diff) | |
download | aur-adfd3b594e258f4824df4605470f2c3229d7b157.tar.gz |
Avoid breakages caused by new python-requests library
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | PKGBUILD | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -1,7 +1,7 @@ pkgbase = python-dbx pkgdesc = DataBricks CLI eXtensions - aka dbx is a CLI tool for advanced Databricks jobs management. pkgver = 0.8.11 - pkgrel = 2 + pkgrel = 3 url = https://docs.databricks.com/dev-tools/dbx.html arch = any license = CUSTOM @@ -18,7 +18,7 @@ pkgbase = python-dbx depends = python-tenacity>=8.2.2 depends = python-tenacity<9.0.0 depends = python-requests>=2.24.0 - depends = python-requests<3.0.0 + depends = python-requests<2.30.0 depends = python-mlflow>=1.28.0 depends = python-mlflow<3.0.0 depends = python-yaml>=6.0 @@ -2,7 +2,7 @@ pkgname=python-dbx _name=dbx pkgver=0.8.11 -pkgrel=2 +pkgrel=3 pkgdesc="DataBricks CLI eXtensions - aka dbx is a CLI tool for advanced Databricks jobs management." arch=(any) url="https://docs.databricks.com/dev-tools/dbx.html" @@ -14,7 +14,7 @@ depends=( "python-rich<14.0.0" # Upstream requires 12.5.1, but 13.x.x looks compatible "python-typer>=0.7.0" "python-typer<1.0.0" "python-tenacity>=8.2.2" "python-tenacity<9.0.0" - "python-requests>=2.24.0" "python-requests<3.0.0" + "python-requests>=2.24.0" "python-requests<2.30.0" # https://github.com/databrickslabs/dbx/issues/764 "python-mlflow>=1.28.0" "python-mlflow<3.0.0" # Upstream requires "python-mlflow-skinny" but it's not available in Arch/AUR "python-yaml>=6.0" "python-pydantic>=1.9.1" "python-pydantic<=2.0.0" |