Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Poetry 1.3.1 #2058

Merged
merged 1 commit into from Dec 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/constraints.txt
@@ -1,3 +1,2 @@
pip==22.3.1
poetry==1.2.2
virtualenv==20.17.1
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Expand Up @@ -38,7 +38,7 @@ jobs:

- name: Install Poetry
run: |
pipx install --pip-args=--constraint=.github/workflows/constraints.txt poetry
pipx install --pip-args=--constraint=.github/workflows/poetry-constraints.txt poetry
poetry --version

- name: Install dependencies
Expand Down
15 changes: 11 additions & 4 deletions .github/workflows/lint.yml
Expand Up @@ -31,11 +31,18 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
- name: Upgrade pip
run: |
pip install --constraint=.github/workflows/constraints.txt pip
pip --version

- name: Install Poetry
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade poetry
poetry install
pip install --constraint=.github/workflows/poetry-constraints.txt poetry
poetry --version

- name: Install dependencies
run: poetry install

- name: Lint
run: ./scripts/lint.sh
1 change: 1 addition & 0 deletions .github/workflows/poetry-constraints.txt
@@ -0,0 +1 @@
poetry==1.3.1
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -29,7 +29,7 @@ jobs:

- name: Install Poetry
run: |
pip install --constraint=.github/workflows/constraints.txt poetry
pip install --constraint=.github/workflows/poetry-constraints.txt poetry
poetry --version

- name: Check if there is a parent commit
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -61,7 +61,7 @@ jobs:

- name: Install Poetry
run: |
pipx install --pip-args=--constraint=.github/workflows/constraints.txt poetry
pipx install --pip-args=--constraint=.github/workflows/poetry-constraints.txt poetry
poetry --version

- name: Install dependencies
Expand Down