naught101

Results 87 comments of naught101

I looked at the PR mentioned, and it looks like the deprecation warning for `nx.nx_pydot.pydot_layout` doesn't suggest a replacement. Is there a way to use pygraphviz via networkx for generating...

Ah, I see `nx.nx_agraph.pygraphviz_layout` exists - perhaps those could be added to the deprecation message?

I'm not sure if this is the place, I couldn't find an existing, but aside from the exact march thing, it would also be good if the remaining tags were...

Very strong support for this. Love the title. Moving small-ish datasets around in a nice way is very useful, and not having to manually write a JSON serialiser or manually...

@eric-wieser yes, I know, but it would be good to be able to do this automatically. For instance, I working with an analysis API that uses numpy in many places...

Why though?

I *think* I fixed it with this (but I'm having other problems, so not 100% sure yet) ```diff diff --git a/Vagrantfile b/Vagrantfile index 880cc1849..50233d5b8 100644 --- a/Vagrantfile +++ b/Vagrantfile @@...

But the `.` directory does not sync with `/vagrant`, so later errors occur (e.g. #22389)

OK, this change got the syncing working for me: ```diff diff --git a/Vagrantfile b/Vagrantfile index 880cc1849..4319638dc 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -131,11 +131,11 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.hostsupdater.remove_on_suspend =...

After running the above and then `vagrant ssh -c "cd /vagrant && bundle install"` (puma and sidekiq were missing), I now have a working dev environment, I think. Mastodon dev...