Matthew Planchard

Results 63 comments of Matthew Planchard

Ah, I'm so glad you were able to figure it out! For Circle, I think we can look into running this job on a machine executor instead of a docker...

I think this might be able to be resolved by updating the `is_logic` function: https://github.com/jwadhams/json-logic-js/blob/a15f528919346f2ec7d82bd4fc91c41481546c01/logic.js#L179-L186 to add an extra condition to verify that the single key is present in the...

@ppazos I haven't forked this directly, but we did make a version of it in Rust that is published as a webassembly module. If you're able to load WASM into...

@jacobtylerwalls thanks for following up! I (obviously) let this fall by the wayside and forgot about it. I’m not doing a ton of python development these days, so please feel...

I'm trying out snafu, and something I ran into that seems potentially related to this issue is how to represent errors encountered while handling other errors, where I want to...

This would definitely be preferable to having to remove the state, rename the repo in GH, and then re-import the state, which is what we're doing now.

FYI, updating `setuptools` to version `35.0.2` resolved the install issue for me. This package should probably specify a minimum required version of `setuptools` to avoid being unable to install it.

In `requirements.txt`, which is parsed by `setup.py`, add `setuptools>=35.0.2`. It's been 5 months since I've had this problem, so I don't remember the exact error, but using a 3.5 virtual...

Similar problem for (extracted) vendored deps pulled in with [`cargo download`](https://github.com/Xion/cargo-download). ``` ❯ RUST_LOG=info cargo outdated error: failed to resolve patches for `https://github.com/rust-lang/crates.io-index` Caused by: failed to load source for...

I also ran into this for `dap-gdb-lldb`, for rust debugging. I was able to manually download the extension from https://marketplace.visualstudio.com/items?itemName=webfreak.debug and unpack it into the `dap-gdb-lldb-path` and get things working