poetry-core icon indicating copy to clipboard operation
poetry-core copied to clipboard

Poetry PEP 517 Build Backend & Core Utilities

Results 91 poetry-core issues
Sort by recently updated
recently updated
newest added

PR to remove all usage of `distutils` from the codebase. `distutils` is currently used in some test fixtures that use `build.py` scripts in order to build C++ extension modules. `distutils`...

Resolves python-poetry/poetry/issues/6201. - [ ] Added **tests** for changed code. - [ ] Updated **documentation** for changed code. WIP for now, since we need to measure the impacts of this...

Python 3.11 is just around the corner, so we have to update this list. `Package.AVAILABLE_PYTHONS` is needed in two places: 1. Adding a classifier when building a wheel (https://github.com/python-poetry/poetry-core/blob/4535724acb356a9da2fa976a243e5f63bef892f8/src/poetry/core/packages/package.py#L309) 2....

https://peps.python.org/pep-0685/#specification says both that all comparisons should be done with normalized extra names, and that normalized extra names should be written to metadata. Simplest and surest approach seems to be...

Upstream run its tests on cloned git repo, but downstreams may or may not run tests in local git tree. Gitignore tests already use mocked results of Git and the...

follow up of #398 to support local zip files in addition to urls - [x] Added **tests** for changed code. - [ ] Updated **documentation** for changed code. Some pitfalls:...

remove with_python_versions() on the grounds that - it has had no callers since more than two years now https://github.com/python-poetry/poetry/commit/2433e0e7007edddf6c74635aae5fc4b3dfdcc617 - the naming convention `with_` (or `without_`) on the package is...

This is another attempt for pull request https://github.com/python-poetry/poetry/pull/5171 - [x] Added **tests** for changed code. - [x] Updated **documentation** for changed code. From what I can tell the relevant code...

Resolves: https://github.com/python-poetry/roadmap/issues/3 - [ ] Added **tests** for changed code. - [ ] Updated **documentation** for changed code.

Scripts can be generated during build. But poetry-core insists that scripts exist ahead of time. fixes obviously this is giving up some validation: it is now possible to build a...