john-bodley commented on PR #26913: URL: https://github.com/apache/superset/pull/26913#issuecomment-1920190948
@mistercrunch I don't have the ability to push to `preset-io`. Here's the contents of my proposed commit which is a slight variation of your change—though with looser constraints after I determined the differences in the dependencies (listed as `via` in the `*.txt` files): ```commit 0a382911837d0b5678de9f78207e1253e2b3c136 (HEAD -> fix_pip_compile_multi) Author: John Bodley <[email protected]> Date: Thu Feb 1 12:40:35 2024 +1300 Reconstrain dependencies diff --git a/requirements/base.in b/requirements/base.in index 2a3c58f84b..7a01a030dd 100644 --- a/requirements/base.in +++ b/requirements/base.in @@ -18,7 +18,7 @@ # -e file:. -# pinning these two dependencies that pip-compile-multi complained about -# please oh please python overlords can you add support for diamond deps! -urllib3[socks]==1.26.18 -referencing==0.31.0 +# The following constraints are currently required as these packages resolved to +# different versions in different environments due to differing sets of dependencies. +referencing>=0.28.0,<0.32.0 # jsonschema-path 0.3.2 +urllib3>=1.25.4,<1.27 # botocore 1.34.32 diff --git a/requirements/base.txt b/requirements/base.txt index 4f876bd537..92ebd7190e 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -1,4 +1,4 @@ -# SHA1:4e4c4b98ddadacf7f8054c4afaa91bbc20c9f8e3 +# SHA1:f2d183fdbf060b653ccae2c5ce1ac2cba47e4255 # # This file is autogenerated by pip-compile-multi # To update, run: @@ -13,7 +13,7 @@ amqp==5.2.0 # via kombu apispec[yaml]==6.4.0 # via flask-appbuilder -apsw==3.45.0.0 +apsw==3.45.1.0 # via shillelagh async-timeout==4.0.3 # via redis @@ -313,7 +313,7 @@ pyyaml==6.0.1 # apispec redis==4.6.0 # via apache-superset -referencing==0.31.0 +referencing==0.31.1 # via # -r requirements/base.in # jsonschema diff --git a/requirements/development.txt b/requirements/development.txt index ce34c9ae10..12d999ba81 100644 --- a/requirements/development.txt +++ b/requirements/development.txt @@ -14,9 +14,9 @@ astroid==3.0.2 # via pylint asttokens==2.4.1 # via stack-data -boto3==1.34.31 +boto3==1.34.32 # via tabulator -botocore==1.34.31 +botocore==1.34.32 # via # boto3 # s3transfer @@ -92,7 +92,7 @@ rfc3986==2.0.0 # via tableschema s3transfer==0.10.0 # via boto3 -sqloxide==0.1.39 +sqloxide==0.1.43 # via -r requirements/development.in stack-data==0.6.3 # via ipython ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
