Dominic Davis-Foster
Dominic Davis-Foster
Would it be possible to have a new patch release of the Python version which includes #6?
### Resource description whey is a PEP 517 build backend using PEP 621 metadata defined in pyproject.toml to build wheels and source distributions. It can also be called directly. ###...
Using the online pyodide console (https://pyodide.org/en/stable/console.html), using the "help" function to see the help for a module etc. uses a pager. This results in the following on Firefox:  If...
**Package manager/ecosystem** Pip/Python **Manifest contents prior to update** https://github.com/domdfcoding/pyms-agilent/blob/058a8d868cc944a717da53dea3a133c93b085735/requirements.txt **Updated dependency** Numpy, from 1.19.3 to 1.19.4 **What you expected to see, versus what you actually saw** I expected the link...
After installing PyYAML via pip on PyPy 3.7 (which builds a wheel behind the scenes), an ImportWarning is emitted when importing `yaml`: ```python traceback $ python3 -Werror -c "import yaml"...
### Description When pip (22.1.2) checked for a new version it failed with an error. It's coming from the following function: https://github.com/pypa/pip/blob/c4606b3572529625762f0586dda134302cf6122c/src/pip/_internal/utils/entrypoints.py#L46-L62 The problem call is to `os.path.samefile` on line...
**Issue** When running with `PYTHONDEVMODE=1` and `PYTHONTRACEMALLOC=1` a number of `ResourceWarning`s are emitted: ```console /usr/lib/python3.8/subprocess.py:946: ResourceWarning: subprocess 20 is still running _warn("subprocess %s is still running" % self.pid, Object allocated...
I have some code that uses filelock, and is annotated something like this: ```python3 from typing import Optional from filelock import FileLock reveal_type(FileLock) lock: Optional[FileLock] = None ``` `mypy` previously...
Hello, I am trying to use this library with a 16x4 character display. Looking at the code (snippet below) there are hardcoded offsets for the third and fourth rows, with...