-
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 branch 'master' into fix-readme
- Loading branch information
Showing
139 changed files
with
4,881 additions
and
2,461 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
version: 2 | ||
|
||
updates: | ||
- package-ecosystem: "pip" | ||
directory: "/" | ||
schedule: | ||
interval: "monthly" | ||
# keep dependency updates manual for now | ||
open-pull-requests-limit: 0 | ||
reviewers: | ||
- "python-poetry/triage" |
This file was deleted.
Oops, something went wrong.
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,74 @@ | ||
name: Test Installation Script | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'install-poetry.py' | ||
- '.github/workflows/installer.yml' | ||
branches: | ||
- master | ||
pull_request: | ||
paths: | ||
- 'install-poetry.py' | ||
- '.github/workflows/installer.yml' | ||
branches: | ||
- '**' | ||
|
||
jobs: | ||
default: | ||
name: ${{ matrix.os }} / ${{ matrix.python-version }} / install-poetry.py ${{ matrix.args }} | ||
runs-on: ${{ matrix.os }}-latest | ||
strategy: | ||
matrix: | ||
os: [ Ubuntu, MacOS, Windows ] | ||
python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10" ] | ||
args: | ||
- "" | ||
- "--preview" | ||
- "--git https://github.com/python-poetry/poetry.git" | ||
- "--version 1.1.11" | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Update PATH | ||
if: ${{ matrix.os != 'Windows' }} | ||
shell: bash | ||
run: echo "$HOME/.local/bin" >> $GITHUB_PATH | ||
|
||
- name: Update PATH for Windows | ||
if: ${{ matrix.os == 'Windows' }} | ||
shell: bash | ||
run: echo "$APPDATA\Python\Scripts" >> $GITHUB_PATH | ||
|
||
- name: Install Poetry | ||
shell: bash | ||
run: python install-poetry.py -y | ||
|
||
- name: Upload Failure Log | ||
uses: actions/upload-artifact@v2 | ||
if: failure() | ||
with: | ||
name: poetry-installer-error.log | ||
path: poetry-installer-error-*.log | ||
|
||
- name: Verify Installation | ||
shell: bash | ||
run: | | ||
set -e | ||
poetry new foobar | ||
cd foobar | ||
poetry config virtualenvs.in-project true | ||
poetry env use python | ||
[ "$(poetry run python --version)" == "$(python --version)" ] \ | ||
|| { echo >&2 "ERROR: Virtual environment Python version do not match system version." && exit 1; } | ||
- name: Uninstall Poetry | ||
shell: bash | ||
run: | | ||
python install-poetry.py -y --uninstall | ||
{ type poetry 2>/dev/null >&2 && exit 1; } || exit 0 |
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.