Jake Levi

Results 13 comments of Jake Levi

Note: work around for me was as follows ([source](https://stackoverflow.com/a/37218925/8477566)): ``` sudo apt install texlive-latex-extra cm-super dvipng ```

I've not run the matplotlib unit tests, I just wanted to get my script working. I raised this issue just as a suggestion to the matplotlib developers that it might...

Now that I've installed the extra packages on my system through `apt`, the tests would probably pass anyway, even if using `fix-cm` wasn't sufficient by itself to solve the problem

I fixed the issue by deleting all but the first 3 lines of `pyproject.toml`, so that `pyproject.toml` looks like this: ``` [build-system] requires = ["setuptools>=61.0"] build-backend = "setuptools.build_meta" ``` I...

As a follow-up question, may I ask why `setup.cfg` files are not mentioned in [the Packaging Python Projects tutorial](https://packaging.python.org/en/latest/tutorials/packaging-projects/), and why instead the tutorial walks through placing all the configuration...

- Thanks for your reply @henryiii - I guess for me, it sounds like the optimal situation would be that all of the fields in `pip show` can be configured...

Fair enough, changing `pip show` would also work. Locally I currently have Python 3.7.6 (still haven't got round to updating it or had a specific need to), wheel 0.38.4, build...

So I gather that the `Author` field in `pip show` is deprecated, but is the `Home-page` field not deprecated? I'm still confused about how I would display it from `pyproject.toml`....

I don't know much about what goes on under the hood with Pylance/Pyright/`pip install`/`setuptools`, but the link you posted describes configuring the editable install to use `.pth` files with file...

Is there a way I can check whether the editable install is using .pth files that contain file paths rather than executable lines? If so I can check in both...