This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v2-7-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 9405b081d7e85ef9fe971f8322f56246fe6418a4 Author: Kevin Mills <[email protected]> AuthorDate: Sun Aug 13 10:20:15 2023 -0500 Modify pathspec version restriction (#33349) Allow pathspec >=0.9.0 to meet requirements of other packages that depend on newer versions of pathspec. For example, DVC requires pathspec >=0.10.3. (cherry picked from commit 699b3f4d58f52d9dde1bc063d6f84b1982ccd1db) --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index cdaad2dc2a..16e9930a38 100644 --- a/setup.cfg +++ b/setup.cfg @@ -122,7 +122,7 @@ install_requires = opentelemetry-api==1.15.0 opentelemetry-exporter-otlp packaging>=14.0 - pathspec~=0.9.0 + pathspec>=0.9.0 pendulum>=2.0 pluggy>=1.0 psutil>=4.2.0
