Blair Bonnett
Blair Bonnett
I've added build files to the [Arch User Repository](https://wiki.archlinux.org/index.php/Arch_User_Repository) so any Arch Linux users can install mlbstreamer with the package manager rather than pip. Several of the dependencies which weren't...
Some of my images require building some large packages during the development phase, but only a small subset of those build artefacts are copied to the final image. Making `RootSize`...
Packages are loaded after vimrc is parsed, so we can't add the hook immediately. Suggest using either an autocommand or a file in an after-directory to add the hook instead....
When this plugin is installed as a Vim8 plugin, it is not loaded until *after* the `vimrc` has been processed. This means that hooks cannot be installed in `vimrc` as...
Firstly, this pull request adds a `utils.splitnames()` function to break apart a string `"Donald E. Knuth and Leslie Lamport"` into a list of individual names `["Donald E. Knuth", "Leslie Lamport"]`....
**Describe the issue**: The source tarball on PyPI does not include conftest.py. This makes it impossible to run the tests as they depend on the custom markers, fixtures etc defined...
This allows setting the StateDirectory option for a dynamic user to a subdirectory of /var/lib, allowing for easy backups or persistence between containers. By setting `c.SystemdSpawner.dynamic_user_statedir = "jupyterhub_users/{USERNAME}"` all state...
The `locale.getdefaultlocale()` function was deprecated in Python 3.11 and will be removed in 3.13 (see the note in [the library docs](https://docs.python.org/3/library/locale.html#locale.getdefaultlocale)). The deprecation warning issued when running says `use setlocale(),...
This adds a `NUMBA_CACHE_OVERRIDE` environment variable which is read into the `config.CACHE_OVERRIDE` setting. If set to ``always``, then the compilation decorators ignore the ``cache=`` parameter and always enable caching. If...
I was trying to build a distribution package from the [0.1.16 source tarball on PyPI](https://pypi.org/project/argopy/0.1.16/#files). Running the tests gave the following error during startup: ``` argopy/tests/conftest.py:8: in from mocked_http import...