Brett Naul

Results 28 comments of Brett Naul

`black` is up to `22.6.0` now, @csurfer what do you think about relaxing the version bounds?

fyi I've asked @cicdw about this before; the analog in my mind is `dask.get` for custom graphs which figures out what needs to be evaluated to get to the key...

@MSeal I started to take a stab at this but I hadn't realized that we also inject all of the parameter values into the notebook metadata: https://github.com/nteract/papermill/blob/master/papermill/parameterize.py#L104 So presently no...

Thanks @jrbourbeau, I am seeing that passing `schema=None` seems to revert to the old behavior, so I guess the change to that default argument is really what surfaced this.

@mgeier sure, that's a good description; the main issue in my mind is just allowing markdown to be rendered as faithfully as possible.

I've also started seeing the same behavior as @syagev (starting maybe within the last month or so?): ![image](https://user-images.githubusercontent.com/903655/73129275-865a5c80-3f94-11ea-8b17-684d2d9c1232.png) Our workflow has been running into this case fairly reliably but I'm...

Just curious, has anything changed on this front? In particular I was looking for a solution to: > Sometimes we want to retry a task on another worker if it...

@jacobtomlinson I've been thinking about what adaptive scaling for HelmCluster could look like, curious what you think about a hybrid approach of the two current options (and also whether it...

Very interesting...will give it a shot, a couple of interesting quirks of our usage that might be also be of interest are: 1) our inputs are all very very small...

Huh I would have thought so too but evidently not... ``` [ins] In [23]: class A(): ...: def f(self): ...: print("A") ...: a = A() ...: a.f() ...: ...: A.f...