Skip to content

Commit f9add58

Browse files
authored
Merge pull request #2058 from PyCQA/deps/poetry-1.3.1
Bump Poetry 1.3.1
2 parents 3c2e2d0 + 36caa91 commit f9add58

File tree

6 files changed

+15
-8
lines changed

6 files changed

+15
-8
lines changed

.github/workflows/constraints.txt

-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
pip==22.3.1
2-
poetry==1.2.2
32
virtualenv==20.17.1

.github/workflows/integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
3939
- name: Install Poetry
4040
run: |
41-
pipx install --pip-args=--constraint=.github/workflows/constraints.txt poetry
41+
pipx install --pip-args=--constraint=.github/workflows/poetry-constraints.txt poetry
4242
poetry --version
4343
4444
- name: Install dependencies

.github/workflows/lint.yml

+11-4
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,18 @@ jobs:
3131
with:
3232
python-version: ${{ matrix.python-version }}
3333

34-
- name: Install dependencies
34+
- name: Upgrade pip
35+
run: |
36+
pip install --constraint=.github/workflows/constraints.txt pip
37+
pip --version
38+
39+
- name: Install Poetry
3540
run: |
36-
python -m pip install --upgrade pip
37-
python -m pip install --upgrade poetry
38-
poetry install
41+
pip install --constraint=.github/workflows/poetry-constraints.txt poetry
42+
poetry --version
43+
44+
- name: Install dependencies
45+
run: poetry install
3946

4047
- name: Lint
4148
run: ./scripts/lint.sh
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
poetry==1.3.1

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
3030
- name: Install Poetry
3131
run: |
32-
pip install --constraint=.github/workflows/constraints.txt poetry
32+
pip install --constraint=.github/workflows/poetry-constraints.txt poetry
3333
poetry --version
3434
3535
- name: Check if there is a parent commit

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
6262
- name: Install Poetry
6363
run: |
64-
pipx install --pip-args=--constraint=.github/workflows/constraints.txt poetry
64+
pipx install --pip-args=--constraint=.github/workflows/poetry-constraints.txt poetry
6565
poetry --version
6666
6767
- name: Install dependencies

0 commit comments

Comments
 (0)