Douglas Thor

Results 32 comments of Douglas Thor

For the record, there's an unofficial repo that allows setting up `buildifier` via `MODULE.bazel`: https://github.com/keith/buildifier-prebuilt Example: ``` # MODULE.bazel bazel_dep(name = "buildifier_prebuilt", version = "6.4.0", dev_dependency = True) ``` ```...

I'm unable to reproduce the issue - can you post a bit more code? Do you have a git repo for the project that I could look at? Setting `legend_bool`...

Some work on this was done wm_legend.py in commit f4133d9. This commit made it so that the ContinuousLegend will always fill to fit the window. Next step will be to...

Yes, that does indeed look like a bug! To be honest it's been a *looong* time since I've looked at this code, so I'm 100% sure that implementing the change...

Need more detail. What was I talking about when I wrote this issue?

Nah it's not that _our_ code uses `installer`. It's not a dependency nor transitive dependency of anything we have in `requirements.in`. If _we_ were using `installer`, you're right it would...

Oh, and here are the two patches that I use to get things working: ```patch diff --git a/python/pip_install/tools/wheel_installer/wheel.py b/python/pip_install/tools/wheel_installer/wheel.py index 750ebfcf..51f1a286 100644 --- a/python/pip_install/tools/wheel_installer/wheel.py +++ b/python/pip_install/tools/wheel_installer/wheel.py @@ -606,6 +606,10 @@...

I think the issue is that `jupyter` is a metapackage, meaning it installs a bunch of other ill-defined packages. Running `pip install jupyter=1.0.0` today may install a different version of,...

Ah ok, so nested patching is one option. I didn't think of that - it sounds fun, haha. I think that option (2) is just fine. It should be rare...

Please provide the following information in order to help me debug: + What operating system are you running? + What python version are you using? + What were the exact...