mirror of
https://github.com/python-poetry/install.python-poetry.org.git
synced 2024-11-23 14:30:57 -05:00
Compare commits
2 commits
c999a2785b
...
0130c55df7
Author | SHA1 | Date | |
---|---|---|---|
|
0130c55df7 | ||
|
dccb456918 |
2 changed files with 8 additions and 17 deletions
6
.github/dependabot.yml
vendored
6
.github/dependabot.yml
vendored
|
@ -1,6 +0,0 @@
|
||||||
version: 2
|
|
||||||
updates:
|
|
||||||
- package-ecosystem: github-actions
|
|
||||||
directory: /
|
|
||||||
schedule:
|
|
||||||
interval: monthly
|
|
19
.github/workflows/installer.yml
vendored
19
.github/workflows/installer.yml
vendored
|
@ -25,16 +25,13 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [Ubuntu, macOS, Windows]
|
os: [Ubuntu, macOS, Windows]
|
||||||
python-version:
|
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
|
||||||
- "3.9"
|
|
||||||
- "3.10"
|
|
||||||
- "3.11"
|
|
||||||
- "3.12"
|
|
||||||
- "3.13"
|
|
||||||
args:
|
args:
|
||||||
- ""
|
- ""
|
||||||
- "--preview"
|
- "--preview"
|
||||||
- "--git https://github.com/python-poetry/poetry.git"
|
- "--git https://github.com/python-poetry/poetry.git"
|
||||||
|
- "--version 1.1.15"
|
||||||
|
- "--version 1.2.0"
|
||||||
include:
|
include:
|
||||||
- os: Ubuntu
|
- os: Ubuntu
|
||||||
image: ubuntu-22.04
|
image: ubuntu-22.04
|
||||||
|
@ -47,10 +44,10 @@ jobs:
|
||||||
run:
|
run:
|
||||||
shell: bash
|
shell: bash
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Set up Python ${{ matrix.python-version }}
|
- name: Set up Python ${{ matrix.python-version }}
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v3
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
|
|
||||||
|
@ -66,7 +63,7 @@ jobs:
|
||||||
run: python install-poetry.py -y ${{ matrix.args }}
|
run: python install-poetry.py -y ${{ matrix.args }}
|
||||||
|
|
||||||
- name: Upload Failure Log
|
- name: Upload Failure Log
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v2
|
||||||
if: failure()
|
if: failure()
|
||||||
with:
|
with:
|
||||||
name: poetry-installer-error.log
|
name: poetry-installer-error.log
|
||||||
|
@ -102,7 +99,7 @@ jobs:
|
||||||
run:
|
run:
|
||||||
shell: bash
|
shell: bash
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Install Packages
|
- name: Install Packages
|
||||||
run: |
|
run: |
|
||||||
|
@ -119,7 +116,7 @@ jobs:
|
||||||
run: python3 install-poetry.py -y
|
run: python3 install-poetry.py -y
|
||||||
|
|
||||||
- name: Upload Failure Log
|
- name: Upload Failure Log
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v2
|
||||||
if: failure()
|
if: failure()
|
||||||
with:
|
with:
|
||||||
name: poetry-installer-error.log
|
name: poetry-installer-error.log
|
||||||
|
|
Loading…
Reference in a new issue