1. 24 Sep, 2020 2 commits
  2. 23 Sep, 2020 7 commits
  3. 22 Sep, 2020 4 commits
  4. 21 Sep, 2020 6 commits
  5. 19 Sep, 2020 4 commits
  6. 18 Sep, 2020 5 commits
  7. 15 Sep, 2020 2 commits
  8. 06 Sep, 2020 1 commit
  9. 05 Sep, 2020 2 commits
  10. 30 Aug, 2020 2 commits
  11. 29 Aug, 2020 1 commit
  12. 28 Aug, 2020 1 commit
  13. 27 Aug, 2020 3 commits
    • info: enable PEP 517 fallback builds by default · 1c8abd4b
      This change ensures that PEP 517 fallback builds are enabled by default
      for when metadata inspection and setup.{py,cfg} parsing fails. This is
      required in order to ensure that package requirements are correctly
      identified for packages beyond first level dependencies.
      
      Resolves: #2807
      Arun Babu Neelicattu committed
    • Handle (*) constraint for pre-release only packages · b2b90755
      This change ensures that packages that only have a pre-release versions
      are pragmatically discovered via `find_packages` when a constraint (*)
      is specified.
      
      Resolves: #2819
      Arun Babu Neelicattu committed
    • Change usage example for poetry export · a4334c0f
      The existing example:
      ```bash
      poetry export -f requirements.txt > requirements.txt
      ```
      The problem with this is that any additional output from poetry will also end up in the requirements file. For instance, if the `poetry.lock` file is not present, poetry will output to stdout some extra text telling you about this. This breaks the requirements file. (I was burned by this problem, hence this PR)
      
      Seeing as there is already a documented option to specify the filename directly, which resolves this issue, updating the docs like this seems reasonable.
      Bendik Samseth committed