Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge master into develop #2209

Merged
merged 50 commits into from
Mar 20, 2020
Merged

Merge master into develop #2209

merged 50 commits into from
Mar 20, 2020

Commits on Jan 17, 2020

  1. Configuration menu
    Copy the full SHA
    5c30345 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2020

  1. Fix case of -f flag

    brandonaut committed Jan 18, 2020
    Configuration menu
    Copy the full SHA
    3a2739e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3d61e2a View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1914 from brandonaut/fix-build-doc

    Documentation: Fix `build` command
    finswimmer authored Jan 18, 2020
    Configuration menu
    Copy the full SHA
    22f06e5 View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2020

  1. fix (masonry.api): get_requires_for_build_wheel must return additio…

    …nal list of requirements for building a package, not listed in `pyproject.toml` and not dependencies for the package itself (#1875)
    
    fix (tests): adopted tests
    finswimmer authored and sdispater committed Jan 20, 2020
    Configuration menu
    Copy the full SHA
    a0c9357 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    380e09b View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2020

  1. Configuration menu
    Copy the full SHA
    954d160 View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2020

  1. Avoid nested quantifiers with overlapping character space on git url …

    …parsing (#1902 (#1913)
    
    * fix (git): match for `\w` instead of `.` for getting user
    
    * change (vcs.git): hold pattern of the regex parts in a dictionary to be consistent over all regexs
    
    * new (vcs.git): test for `parse_url` and some fixes for the regex pattern
    
    * new (vcs.git): test for `parse_url` with string that should fail
    
    * fix (test.vcs.git): make flake8 happy
    finswimmer authored and sdispater committed Jan 22, 2020
    Configuration menu
    Copy the full SHA
    2df0d2c View commit details
    Browse the repository at this point in the history
  2. fix: correct parsing of wheel version with regex. (#1932)

    The previous regexp was only taking the first integer of the version number,
    this presented problems when the major version number reached double digits.
    
    Poetry would determine that the version of the dependency is '1', rather than,
    ie: '14'. This caused failures to solve versions.
    edwardgeorge authored and sdispater committed Jan 22, 2020
    Configuration menu
    Copy the full SHA
    930515b View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2020

  1. Configuration menu
    Copy the full SHA
    4897a70 View commit details
    Browse the repository at this point in the history
  2. Fix how repository credentials are retrieved from env vars (#1909)

    # Conflicts:
    #	poetry/utils/password_manager.py
    sdispater authored Jan 31, 2020
    Configuration menu
    Copy the full SHA
    4687ef8 View commit details
    Browse the repository at this point in the history
  3. Fix downloading packages from Simplepypi (#1851)

    * fix downloading packages from simplepypi
    
    * unused code removed
    
    * remove unused imports
    leftys authored Jan 31, 2020
    Configuration menu
    Copy the full SHA
    d331535 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7974d0f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ed44342 View commit details
    Browse the repository at this point in the history

Commits on Feb 11, 2020

  1. Fix non-compliant Git URL matching

    RFC 3986 § 2.3 permits more characters in a URL than were matched. This
    corrects that, though there may be other deficiencies. This was a
    regression from v1.0.2, where at least “.” was matched without error.
    amarshall committed Feb 11, 2020
    Configuration menu
    Copy the full SHA
    7348893 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2018 from amarshall/fix-git-url-pattern

    Fix non-compliant Git URL matching
    finswimmer authored Feb 11, 2020
    Configuration menu
    Copy the full SHA
    7d5934e View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2020

  1. Update README.md "Updating Poetry"

    Currently the note in "Updating Poetry" is different from the one below in "Enable tab completion for Bash, Fish, or Zsh". This MR is to make them more consistent.
    afs2015 authored Feb 14, 2020
    Configuration menu
    Copy the full SHA
    8fa1915 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2020

  1. Merge pull request #2040 from afs2015/patch-1

    Update README.md "Updating Poetry"
    finswimmer authored Feb 15, 2020
    Configuration menu
    Copy the full SHA
    b3b07cb View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2020

  1. Configuration menu
    Copy the full SHA
    03db001 View commit details
    Browse the repository at this point in the history

Commits on Feb 17, 2020

  1. Merge pull request #1519 from and800/master

    init: change dev dependency prompt
    finswimmer authored Feb 17, 2020
    Configuration menu
    Copy the full SHA
    12db4a5 View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2020

  1. Fix CI issues (#2069)

    sdispater authored Feb 21, 2020
    Configuration menu
    Copy the full SHA
    960dc06 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d0a8aed View commit details
    Browse the repository at this point in the history
  3. fix(git): get commit sha of git commit from annotated tags (#1948)

    * fix(git): have annotated tags resolve to the commit sha
    
    * fix(git): fix quote
    
    * fix(git): change to rev-parse
    jrmlhermitte authored Feb 21, 2020
    Configuration menu
    Copy the full SHA
    8bbf311 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    46a1103 View commit details
    Browse the repository at this point in the history
  5. Fix #1791: Load repository URL from config (#2061)

    * Fix #1791: Load repository URL from config
    
    * Ran black to fix linting errors
    
    * Add test for repo URL env variable
    thejcannon authored Feb 21, 2020
    Configuration menu
    Copy the full SHA
    04a1544 View commit details
    Browse the repository at this point in the history
  6. Changed schema to support url in multi dependencies (#2035)

    László Velinszky authored Feb 21, 2020
    Configuration menu
    Copy the full SHA
    44c60c4 View commit details
    Browse the repository at this point in the history
  7. Fix handling of forward slashes and url encoding in credentials (#1911)

    * Add support for forward slashes and url encoding in credentials
    
    * Remove extra newline
    
    * Remove unquote
    lubert authored Feb 21, 2020
    Configuration menu
    Copy the full SHA
    96191ca View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2020

  1. Bump actions/checkout from v1 to v2 (#2075)

    * Update release.yml
    
    * Update main.yml
    BSKY authored Feb 28, 2020
    Configuration menu
    Copy the full SHA
    085d5a6 View commit details
    Browse the repository at this point in the history
  2. Fix vendor package as installed package (#1883) (#1981)

    * Fix vendor package as installed package (#1883)
    
    * import from
    
    Co-Authored-By: Sébastien Eustace <sebastien.eustace@gmail.com>
    
    * test vendor package as installed
    
    * refactor
    
    * remove blank line
    
    Co-authored-by: Sébastien Eustace <sebastien.eustace@gmail.com>
    trim21 and sdispater authored Feb 28, 2020
    Configuration menu
    Copy the full SHA
    15728ee View commit details
    Browse the repository at this point in the history
  3. fix(utils.env): import cli_run from virtualenv (#2096)

    * fix(utils.env): import cli_run from virtualenv if create_environment import failes
    
    * fix (utils.env): added accidentally removed code
    finswimmer authored Feb 28, 2020
    Configuration menu
    Copy the full SHA
    9306cd2 View commit details
    Browse the repository at this point in the history
  4. list .venv when it exists (#1762)

    * list .venv when it exists
    
    * only list when in-project is true
    
    * missing config
    
    * move logic to manager.list
    
    * Add .venv when it exists
    Frost Ming authored Feb 28, 2020
    Configuration menu
    Copy the full SHA
    607e70f View commit details
    Browse the repository at this point in the history
  5. fix: exclude subpackage from setup.py if __init__.py is excluded (#…

    …1009) (#1626)
    
    * fix: exclude subpackage from `setup.py` if `__init__.py` is excluded
    
    Fixes: #1009
    
    * fix: added missing test data
    
    * fix: lint test data
    
    * change (sdist.git): exclude folders with no python file
    
    * fix (sdist.git): make black happy
    finswimmer authored Feb 28, 2020
    Configuration menu
    Copy the full SHA
    90af3a4 View commit details
    Browse the repository at this point in the history
  6. get_vcs starts searching git folder from tmp dir instead of project (#…

    …1946) (#1947)
    
    * fix (builder): take `self._original_path` if available to find `.git` folder
    
    * change (vcs): use `git rev-parse --show-toplevel` to find git root folder
    
    * fix (vcs): change back to original working dir after finding vcs
    
    * change (builder): introduce self._original_path to keep original path
    if(vcs): resolve directory for `get_vcs`
    finswimmer authored Feb 28, 2020
    2 Configuration menu
    Copy the full SHA
    ab66bb9 View commit details
    Browse the repository at this point in the history
  7. Normalize author name unicode before matching (#2006)

    * Fix accented characters not being matched in author name
    
    Fixes #2004
    
    * Normalized the strings instead of modifying the pattern
    
    * Applied isort & black
    raphaelyancey authored Feb 28, 2020
    Configuration menu
    Copy the full SHA
    ae6d64d View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    c9fb348 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    e202151 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    7484957 View commit details
    Browse the repository at this point in the history
  11. Release 1.0.4 (#2101)

    * Update release script
    
    * Bump version to 1.0.4
    sdispater authored Feb 28, 2020
    Configuration menu
    Copy the full SHA
    eb8413e View commit details
    Browse the repository at this point in the history
  12. Fix release script (#2104)

    sdispater authored Feb 28, 2020
    Configuration menu
    Copy the full SHA
    bb9582c View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    d2fed3d View commit details
    Browse the repository at this point in the history

Commits on Feb 29, 2020

  1. Merge pull request #2105 from adisbladis/vcs-git-path

    Fix VCS when git is not in PATH
    finswimmer authored Feb 29, 2020
    Configuration menu
    Copy the full SHA
    ae96feb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ba48eb4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    754dbf8 View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2020

  1. Fix GitHub URL for black

    Black is now officially supported by the Python Software Foundation
    dmerejkowsky committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    d9a1e84 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bf7c920 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2020

  1. Merge pull request #2132 from jules-ch/contributing-docs-fix

    Update Contributing.md
    finswimmer authored Mar 6, 2020
    Configuration menu
    Copy the full SHA
    d2ee7f9 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2129 from dmerejkowsky/fix-black-github-url

    Fix GitHub URL for black
    finswimmer authored Mar 6, 2020
    Configuration menu
    Copy the full SHA
    b459569 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2020

  1. Configuration menu
    Copy the full SHA
    bf07cef View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2164 from alexpovel/patch-1

    Update managing-environments.md
    finswimmer authored Mar 10, 2020
    Configuration menu
    Copy the full SHA
    d27a119 View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2020

  1. Merge branch 'master' into merge-master-into-develop

    # Conflicts:
    #	CHANGELOG.md
    #	poetry.lock
    #	poetry/__version__.py
    #	pyproject.toml
    sdispater committed Mar 20, 2020
    Configuration menu
    Copy the full SHA
    b0ee465 View commit details
    Browse the repository at this point in the history