John T. Wodder II
John T. Wodder II
Yahoo!'s list of outbound mailer IP addresses at https://help.yahoo.com/kb/SLN23997.html seems to be no longer available; the URL now redirects to https://help.yahoo.com/kb/account?redirect=true with the message "You have been redirected to this...
Would it be possible for the `stdin`, `stdout`, and `stderr` arguments of `open_process()` and `run_process()` to be expanded to accept both `None` (to inherit the file descriptor from the parent)...
Given a gitignore pattern like "`\*sterisk`", Git (as of v2.36.1) will match a file named `*sterisk` but will not match one named `asterisk`. pathspec v0.9.0, meanwhile, matches both files.
If a typo or other mistake is made on the command line and the user tries to run `bump2version` with an invalid `part` (e.g., `bump2version pathc`), the program will not...
I am attempting to get [this workaround](https://github.com/intuit/auto/issues/1294#issuecomment-643403558) for the E2BIG error to work, but I am unable to get auto (v10.29.3) to load my local plugin. I've tried setting the...
We're trying to set up a repository providing a Python library for working with a certain data schema. The library version and the schema version are separate, and so we...
Adding the `-v`/`--verbose` option to a command causes the resulting diagnostic output to be output to stdout, when normally such things should be output to stderr. This is in particular...
In [this release](https://github.com/dandi/dandi-cli/releases/tag/0.11.0) made moments ago with the latest release of `auto` (currently 10.18.3), you can see that there are multiple items under "Enhancement" associated with PR 330, with each...
[The documentation for the `exec` plugin](https://intuit.github.io/auto/docs/generated/exec#usage) gives the following example: ```json { "plugins": [ [ "exec", { "version": "npm version $ARG_0", "publish": "npm publish && git push --tags", "afterRelease": "yarn...
First, a question: Is joblib's Memory safe with regards to threading, multiprocessing, *and* NFS? We need safety in all three aspects for our purposes. Assuming that the answer is "yes,"...