- 15 Aug, 2020 4 commits
-
-
Resolves: #2333
Kelton Bassingthwaite committed -
Dan Hipschman committed
-
thomaszub committed
-
Prior to this change, when checking solver results the tests cases relied on the weaker equality check of the `Package` class. With python-poetry/poetry-core#53, the check has been made stricter. This change, while having no functional impact, ensures that once poetry-core is updated, tests do not fail unexpectedly.
Arun Babu Neelicattu committed
-
- 14 Aug, 2020 5 commits
-
-
finswimmer committed
-
Arun Babu Neelicattu committed
-
This works around a glob parsing bug in cirrus-ci. Relates-to: cirruslabs/cirrus-ci-docs#696
Arun Babu Neelicattu committed -
Arun Babu Neelicattu committed
-
Arun Babu Neelicattu committed
-
- 11 Aug, 2020 1 commit
-
-
Relax tomlkit version requirement
Sébastien Eustace committed
-
- 10 Aug, 2020 1 commit
-
-
Yohei Tamura committed
-
- 06 Aug, 2020 1 commit
-
-
Arun Babu Neelicattu committed
-
- 03 Aug, 2020 2 commits
- 31 Jul, 2020 2 commits
-
-
Improve detection of installed packages in an environment
Sébastien Eustace committed -
* ci: artifact release automation for freebsd Resolves: #2309 * ci: limit python versions to 2.7 and 3.7 (freebsd) * ci: ignore action checks for cirrus only change
Arun Babu Neelicattu committed
-
- 30 Jul, 2020 4 commits
-
-
Arun Babu Neelicattu committed
-
A package installed from git is sometimes mistaken as a standard package since it has a `.dist-info` directory. This change ensures that the pth file sources are also taken into consideration when determining if a package is git sourced. Additionally, this change ensures that a pth file is searched for in both platlib and purelib site directories.
Arun Babu Neelicattu committed -
When detecting installed packages, ensure that we check both purelib and platlib site directories when determining if a package is a standard package.
Arun Babu Neelicattu committed -
Cached artifact uri was previously constructed manually using a string representation of the artifact path. This change ensures that the uri is generated by pathlib instead. Resolves: #2744 Co-authored-by: Fredrik Averpil <fredrik.averpil@ericsson.com> Co-authored-by: Arun Babu Neelicattu <arun.neelicattu@gmail.com>
Fredrik Averpil committed
-
- 28 Jul, 2020 3 commits
-
-
Sébastien Eustace committed
-
This change ensures that non fancy io can use parallel installs.
Aviram Hassan committed -
Arun Babu Neelicattu committed
-
- 27 Jul, 2020 1 commit
-
-
Arun Babu Neelicattu committed
-
- 24 Jul, 2020 16 commits
-
-
Release 1.1.0b2
Sébastien Eustace committed -
Sébastien Eustace committed
-
Sébastien Eustace committed
-
Sébastien Eustace committed
-
Release 1.1.0b1
Sébastien Eustace committed -
Sébastien Eustace committed
-
Sébastien Eustace committed
-
Display logging messages from poetry-core when building
Sébastien Eustace committed -
Sébastien Eustace committed
-
Arun Babu Neelicattu committed
-
This change replaces setup.py explicit execution in favour of pep517 metadata builds. In addition to improving handling of PEP 517 metadata builds, error handling when reading setup files have also been improved.
Arun Babu Neelicattu committed -
Sébastien Eustace committed
-
Sébastien Eustace committed
-
This ensures to use the correct python executable. Using `run` simply uses `sys.prefix` with a bin suffix, which is not necessarily the currently used python executable. E.g. when linking a specific python version to a custom directory, using `sys.prefix` may point to the wrong python version: * /usr/bin/python2.7 * /usr/bin/python3.6 * /usr/bin/python is a symlink to 2.7 * /usr/bin/local/python (or any other location) is a symlink to 3.6 which shadows the former symlink `sys.prefix` is `/usr` in this case, which is correct, but the `python` executable there points to the wrong version. `run_pip` in the env fixes this already by using `sys.executable`, see https://github.com/python-poetry/poetry/blob/develop/poetry/utils/env.py#L964 This should be used in the executor as well. Co-authored-by: Jonathan Striebel <jstriebel@users.noreply.github.com>
Sébastien Eustace committed -
Sébastien Eustace committed
-
Sébastien Eustace committed
-