Dustin Ingram

Results 88 issues of Dustin Ingram

### Goals 1. Create a list of projects that currently use pip's internal API 1. Identify which use cases are not covered by `pip-api` 1. Open issues for each use...

Per #14, `pip-api` should respect `pip.conf` or pip's environment variables for things like custom indices.

enhancement

Should this repo be archived?

We have a few web properties that represent "Python Packaging": * https://packaging.python.org (this repo, fairly well maintained) * https://pypa.io (https://github.com/pypa/pypa.io, infrequently updated) * Various project-specific docs: * https://pip.pypa.io/ * https://virtualenv.pypa.io/...

type: task

I was working through the guide at https://packaging.python.org/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/ and made a mistake by creating a workflow that published any time a push is made. The guide currently suggests: ```yaml on:...

Github has announced support for diagram generation via [https://github.com/mermaid-js/mermaid](https://github.com/mermaid-js/mermaid): https://github.blog/2022-02-14-include-diagrams-markdown-files-mermaid/ Given how many users use the same README for both PyPI and GitHub, we should explore how we could support...

enhancement

When using text/reST for the package description in the METADATA package dist-info file, the top level section header is omitted in the rendered page, however it is included when the...

question
needs clarification

The `build` project now has a `--config-setting` flag to pass options to the backend: ``` $ python -m build --help usage: python -m build [-h] [--version] [--sdist] [--wheel] [--outdir dir]...

Currently this project only preserves comments when they're on a line with syntax, otherwise they are removed: `pyproject.toml`: ```toml [project] # A comment-only line name = "something" # This is...

bug
help wanted

I use a library, [automat](https://pypi.org/project/Automat/) that has some runtime assumptions about whether certain functions have function bodies or not. When I run my tests with `pytest` and `coverage`, it works...