1. 20 Jun, 2022 1 commit
  2. 19 Jun, 2022 6 commits
  3. 18 Jun, 2022 2 commits
  4. 16 Jun, 2022 2 commits
  5. 15 Jun, 2022 6 commits
  6. 14 Jun, 2022 1 commit
  7. 13 Jun, 2022 3 commits
  8. 10 Jun, 2022 3 commits
  9. 09 Jun, 2022 4 commits
  10. 08 Jun, 2022 1 commit
    • Correct URL in test_parse_dependency_specification · 62b24c79
      The URL path is used by `mock_download` to determine the path relative
      to the fixtures directory to get the download result.
      
      I believe this has been passing on CI because the `copy_or_symlink` call
      in `mock_download` happily creates a symlink to a non-existent path, but
      when running on Windows without permission to create symlinks,
      `shutil.copyfile` is called as a fallback, and fails trying to copy a
      non-existent file.
      Paul "Hampy" Hampson committed
  11. 07 Jun, 2022 1 commit
  12. 06 Jun, 2022 8 commits
  13. 05 Jun, 2022 2 commits
    • Remove references to `--dev-only` install option · 865aa94d
      According to
      https://github.com/python-poetry/poetry/issues/4864#issuecomment-1002465303:
      > The `--dev-only` option was never available in a release, but was already
      > available in the master branch. Because it's a feature we will probably not
      > backport this to the 1.1 branch.
      
      Given that the option was only ever present when installing Poetry from master
      and was never available as part of a release, I think it's clearer to just
      remove all references to it rather than include a deprecation notice that would
      only be relevant to a tiny fraction of Poetry users.
      Joseph LaFreniere committed
    • Exclude .venv from Time Machine backups (#4599) · ca76e11d
      * Exclude .venv from Time Machine backups
      
      * Remove leftover print statements
      
      * Make backup exclusion test only run on darwin
      
      * Add comment explaining backup exclusion xattr value
      
      * Use plistlib to generate backup exclusion xattr value
      
      * Only install xattr on darwin
      
      * Add TODO comment
      
      * Merge fix
      
      * Only import xattr on macOS test
      
      * Try fixing CI error
      
      * Add type annotations
      
      * Fix CI errors
      
      * Add spacing pyproject.toml
      
      Co-authored-by: Bjorn Neergaard <bjorn@neersighted.com>
      
      * Move mypy ignore to `pyproject.toml`
      
      Co-authored-by: Bjorn Neergaard <bjorn@neersighted.com>
      Kasper committed