-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2509 from python-poetry/merge-master-into-develop
Merge master into develop
- Loading branch information
Showing
97 changed files
with
1,509 additions
and
309 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Ref: https://help.github.com/en/github/building-a-strong-community/configuring-issue-templates-for-your-repository#configuring-the-template-chooser | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: '💬 Discord Server' | ||
url: https://discordapp.com/invite/awxPgve | ||
about: | | ||
Chat with the community, ask questions and learn about best practices. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
# Pull Request Check List | ||
|
||
This is just a reminder about the most common mistakes. Please make sure that you tick all *appropriate* boxes. But please read our [contribution guide](https://python-poetry.org/docs/contributing/) at least once, it will save you unnecessary review cycles! | ||
Resolves: #issue-number-here | ||
|
||
<!-- This is just a reminder about the most common mistakes. Please make sure that you tick all *appropriate* boxes. But please read our [contribution guide](https://python-poetry.org/docs/contributing/) at least once, it will save you unnecessary review cycles! --> | ||
|
||
- [ ] Added **tests** for changed code. | ||
- [ ] Updated **documentation** for changed code. | ||
|
||
**Note**: If your Pull Request introduces a new feature or changes the current behavior, it should be based | ||
on the `develop` branch. If it's a bug fix or only a documentation update, it should be based on the `master` branch. | ||
<!-- **Note**: If your Pull Request introduces a new feature or changes the current behavior, it should be based | ||
on the `develop` branch. If it's a bug fix or only a documentation update, it should be based on the `master` branch. --> | ||
|
||
If you have *any* questions to *any* of the points above, just **submit and ask**! This checklist is here to *help* you, not to deter you from contributing! | ||
<!-- If you have *any* questions to *any* of the points above, just **submit and ask**! This checklist is here to *help* you, not to deter you from contributing! --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -148,32 +148,32 @@ jobs: | |
uses: actions/download-artifact@master | ||
with: | ||
name: poetry-${{ steps.tag.outputs.tag }}-linux.tar.gz | ||
path: releases/poetry-${{ steps.tag.outputs.tag }}-linux.tar.gz | ||
path: releases/ | ||
- name: Download Linux checksum file | ||
uses: actions/download-artifact@master | ||
with: | ||
name: poetry-${{ steps.tag.outputs.tag }}-linux.sha256sum | ||
path: releases/poetry-${{ steps.tag.outputs.tag }}-linux.sha256sum | ||
path: releases/ | ||
- name: Download MacOS release file | ||
uses: actions/download-artifact@master | ||
with: | ||
name: poetry-${{ steps.tag.outputs.tag }}-darwin.tar.gz | ||
path: releases/poetry-${{ steps.tag.outputs.tag }}-darwin.tar.gz | ||
path: releases/ | ||
- name: Download MacOS checksum file | ||
uses: actions/download-artifact@master | ||
with: | ||
name: poetry-${{ steps.tag.outputs.tag }}-darwin.sha256sum | ||
path: releases/poetry-${{ steps.tag.outputs.tag }}-darwin.sha256sum | ||
path: releases/ | ||
- name: Download Windows release file | ||
uses: actions/download-artifact@master | ||
with: | ||
name: poetry-${{ steps.tag.outputs.tag }}-win32.tar.gz | ||
path: releases/poetry-${{ steps.tag.outputs.tag }}-win32.tar.gz | ||
path: releases/ | ||
- name: Download Windows checksum file | ||
uses: actions/download-artifact@master | ||
with: | ||
name: poetry-${{ steps.tag.outputs.tag }}-win32.sha256sum | ||
path: releases/poetry-${{ steps.tag.outputs.tag }}-win32.sha256sum | ||
path: releases/ | ||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
|
@@ -190,7 +190,7 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: releases/poetry-${{ steps.tag.outputs.tag }}-linux.tar.gz/poetry-${{ steps.tag.outputs.tag }}-linux.tar.gz | ||
asset_path: releases/poetry-${{ steps.tag.outputs.tag }}-linux.tar.gz | ||
asset_name: poetry-${{ steps.tag.outputs.tag }}-linux.tar.gz | ||
asset_content_type: application/gzip | ||
- name: Upload Linux checksum file asset | ||
|
@@ -199,16 +199,16 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: releases/poetry-${{ steps.tag.outputs.tag }}-linux.sha256sum/poetry-${{ steps.tag.outputs.tag }}-linux.sha256sum | ||
asset_path: releases/poetry-${{ steps.tag.outputs.tag }}-linux.sha256sum | ||
asset_name: poetry-${{ steps.tag.outputs.tag }}-linux.sha256sum | ||
asset_content_type: text/pain | ||
asset_content_type: text/plain | ||
- name: Upload MacOS release file asset | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: releases/poetry-${{ steps.tag.outputs.tag }}-darwin.tar.gz/poetry-${{ steps.tag.outputs.tag }}-darwin.tar.gz | ||
asset_path: releases/poetry-${{ steps.tag.outputs.tag }}-darwin.tar.gz | ||
asset_name: poetry-${{ steps.tag.outputs.tag }}-darwin.tar.gz | ||
asset_content_type: application/gzip | ||
- name: Upload MacOS checksum file asset | ||
|
@@ -217,16 +217,16 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: releases/poetry-${{ steps.tag.outputs.tag }}-darwin.sha256sum/poetry-${{ steps.tag.outputs.tag }}-darwin.sha256sum | ||
asset_path: releases/poetry-${{ steps.tag.outputs.tag }}-darwin.sha256sum | ||
asset_name: poetry-${{ steps.tag.outputs.tag }}-darwin.sha256sum | ||
asset_content_type: text/pain | ||
asset_content_type: text/plain | ||
- name: Upload Windows release file asset | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: releases/poetry-${{ steps.tag.outputs.tag }}-win32.tar.gz/poetry-${{ steps.tag.outputs.tag }}-win32.tar.gz | ||
asset_path: releases/poetry-${{ steps.tag.outputs.tag }}-win32.tar.gz | ||
asset_name: poetry-${{ steps.tag.outputs.tag }}-win32.tar.gz | ||
asset_content_type: application/gzip | ||
- name: Upload Windows checksum file asset | ||
|
@@ -235,9 +235,9 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: releases/poetry-${{ steps.tag.outputs.tag }}-win32.sha256sum/poetry-${{ steps.tag.outputs.tag }}-win32.sha256sum | ||
asset_path: releases/poetry-${{ steps.tag.outputs.tag }}-win32.sha256sum | ||
asset_name: poetry-${{ steps.tag.outputs.tag }}-win32.sha256sum | ||
asset_content_type: text/pain | ||
asset_content_type: text/plain | ||
- name: Install Poetry | ||
run: | | ||
python get-poetry.py --preview -y | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ | |
*.egg | ||
!/tests/**/*.egg | ||
/*.egg-info | ||
/tests/fixtures/**/*.egg-info | ||
/dist/* | ||
build | ||
_build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.