- 19 Oct, 2019 1 commit
-
-
* This PR impliments the feature request #784. When a folder is explicit defined in `pyproject.toml` as excluded, all nested data, including subfolder, are excluded. It is no longer neccessary to use the glob `folder/**/*` * use `Path` instead of `os.path.join` to create string for globbing * try to fix linting error * create glob pattern string by concatenating and not using Path * using `os.path.isdir()`` for checking of explicit excluded name is a folder, because pathlib's `is_dir()` raises in exception under windows of name contains globing characters * Remove nested data when wildcards where used. Steps to do this are: 1. expand any wildcard used 2. if expanded path is a folder append **/* and expand again * fix linting * only glob a second time if path is dir * implement @sdispater 's suggestion for better readability * fix glob for windows? * On Windows, testing if a path with a glob is a directory will raise an OSError * pathlibs glob function doesn't return the correct case (https://bugs.python.org/issue26655). So switching back to glob.glob() * removing obsolete imports
finswimmer committed
-
- 11 Oct, 2019 1 commit
-
-
* * check if relative filename is in excluded file list * removed find_excluded_files() method from wheel.py * added test for excluding files in wheels * creating an own test data folder, for testing excluding files by pyproject.toml * use as_posix() to respect windows file path delimiters
finswimmer committed
-
- 10 Oct, 2019 2 commits
-
-
Allow the `POETRY_HOME` environment variable to be passed during installation to change the default installation directory of `~/.poetry`: ``` POETRY_HOME=/etc/poetry python get-poetry.py ```
David Cramer committed -
Tom Milligan committed
-
- 30 Sep, 2019 2 commits
-
-
Sébastien Eustace committed
-
Sébastien Eustace committed
-
- 29 Sep, 2019 1 commit
-
-
* Fix specification of Python versions for dependencies using double pipe (`||`) instead of using an array which leads to confusion (see for instance https://github.com/sdispater/poetry/issues/847). * Fixes #847 Signed-off-by: mr.Shu <mr@shu.io>
Marek Šuppa committed
-
- 24 Sep, 2019 3 commits
-
-
Resolves: #1080
Arun Babu Neelicattu committed -
Closes: #1303
Arun Babu Neelicattu committed -
Géry Ogam committed
-
- 23 Sep, 2019 2 commits
-
-
stephsamson committed
-
* Update issue templates, thanks @explosion for the inspiration. Direct support questions to StackOverflow instead. * Remove stale issue templates. * Update ---bug-report.md * Update ---documentation.md
Steph Samson committed
-
- 22 Sep, 2019 1 commit
-
-
Arun Babu Neelicattu committed
-
- 20 Sep, 2019 1 commit
-
-
Sébastien Eustace committed
-
- 13 Sep, 2019 8 commits
-
-
Sébastien Eustace committed
-
* Update about.py * Update add.py * Update update.py
Géry Ogam committed -
Sébastien Eustace committed
-
Darren Weber committed
-
Some packages (like `pygame-music-grid`) have unparseable metadata. This resulted in a ValueError. pip ignores packages like these, so it's reasonable to do the same in poetry itself and only display the well-formed ones. Fixes #1345. Fixes #637.
Tamás Szelei committed -
Sébastien Eustace committed
-
Sébastien Eustace committed
-
This reverts commit be03ab9e.
Sébastien Eustace committed
-
- 10 Sep, 2019 2 commits
-
-
Sébastien Eustace committed
-
This reverts commit 0b38fada.
Sébastien Eustace committed
-
- 05 Sep, 2019 2 commits
-
-
- apply the PyCharm "optimize imports" - place functions above fixtures - alphabetize fixture functions - remove duplicate tmp_dir fixture
Darren Weber committed -
Darren Weber committed
-
- 03 Sep, 2019 3 commits
-
-
Arun Babu Neelicattu committed
-
This change fixes the installation of packages using a url source. Previously, the installer attempted to install the package using the name ignoring the source url.
Arun Babu Neelicattu committed -
* fix METADATA generation for git dependencies with extras * add comment * add comment * add comment and linting * Move trailing space from `base_pep_508_name()` to `to_pep_508()` * Merge remote-tracking branch 'origin/master' # Conflicts: # tests/packages/test_vcs_dependency.py * Make changes python2 compliant * Handle any type of marker * Insert space before semicolon in dependency.py if vcs
fsal committed
-
- 02 Sep, 2019 3 commits
-
-
Sébastien Eustace committed
-
Sébastien Eustace committed
-
* Setup basic Github actions * Remove Travis and Appveyor config files * Update pre-commit configuration
Sébastien Eustace committed
-
- 01 Sep, 2019 2 commits
- 26 Aug, 2019 2 commits
-
-
Catch and deal with failed symlinking on Windows
Brian Turek committed -
Check to ensure the global config exists before reading
Brian Turek committed
-
- 24 Aug, 2019 1 commit
-
-
remove NoReturn, use None instead
Bryce Drennan committed
-
- 23 Aug, 2019 1 commit
-
-
toppk committed
-
- 20 Aug, 2019 2 commits
-
-
950 simplified
Bryce Drennan committed -
Bryce committed
-