Dominic Davis-Foster

Results 34 comments of Dominic Davis-Foster

Presumably related to this issue, I'm seeing an endless redirect for epub download urls: ```console $ curl -L https://domdf-python-tools.readthedocs.io/_/downloads/en/stable/epub/ curl: (47) Maximum (50) redirects followed ``` For this project I...

Aside from different formatting, this is the same change as I made locally (but never got round to making a PR for). I've had no problems so far.

It looks like you're trying to install the package globally (which generally isn't a good idea). Can you try installing into a virtual environment (see the guide [here](https://packaging.python.org/en/latest/guides/installing-using-pip-and-virtual-environments/) if you're...

All I was seeing was the `tid(2749) burning pthread_key_t == 0 so we never use it` line. After restarting it still shows up but steam then opens as usual.

Seeing this myself with https://github.com/PyMassSpec/PyMassSpec/pull/50. Matplotlib 3.8.2 requires Python 3.9 but the requirement dependabot is updating has `python_version == "3.6"`

I second the request for a better error code than 200 when authentication is required but no token supplied. It wasn't apparent why I was getting an empty response with...

It might be better to use the `packaging` library (specifically [`packaging.requirements.Requirement`](https://packaging.pypa.io/en/stable/requirements.html) for the parsing. For example ```python3 from packaging.requirements import Requirement r = Requirement("dask[dataframe]; python_version < '3.7' and extra=='dev'") package_name...

I wish I'd seen this half an hour ago before going down the rabbit hole of figuring out why the touchscreen doesn't work. 🤦‍

As I read it the normalisation should be performed by the tool creating the sdist. If it isn't being normalised that's a bug in the build backend. I'm not sure...

This will ultimately need https://github.com/pypa/warehouse/issues/9660 to be merged first, otherwise the sdists won't be uploadable to PyPI.