File tree 4 files changed +25
-4
lines changed
4 files changed +25
-4
lines changed Original file line number Diff line number Diff line change
1
+ pip==22.3.1
2
+ poetry==1.2.2
3
+ virtualenv==20.17.1
Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
strategy :
9
9
matrix :
10
- python-version : ["3.8 "]
10
+ python-version : ["3.9 "]
11
11
12
12
steps :
13
13
- uses : actions/checkout@v2
@@ -25,11 +25,21 @@ jobs:
25
25
with :
26
26
python-version : ${{ matrix.python-version }}
27
27
28
- - name : Install dependencies
28
+ - name : Upgrade pip
29
+ run : |
30
+ pip install --constraint=.github/workflows/constraints.txt pip
31
+ pip --version
32
+
33
+ - name : Install Poetry
29
34
run : |
30
35
python -m pip install --upgrade pip
36
+ pipx install --pip-args=--constraint=.github/workflows/constraints.txt poetry
31
37
python -m pip install --upgrade poetry
38
+ poetry --version
32
39
poetry install
33
40
41
+ - name : Install dependencies
42
+ run : poetry install
43
+
34
44
- name : Test integration
35
45
run : ./scripts/test_integration.sh
Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
strategy :
9
9
matrix :
10
- python-version : ["3.8 "]
10
+ python-version : ["3.9 "]
11
11
12
12
steps :
13
13
- uses : actions/checkout@v2
Original file line number Diff line number Diff line change @@ -48,10 +48,18 @@ jobs:
48
48
with :
49
49
python-version : ${{ matrix.python-version }}
50
50
51
- - name : Install poetry
51
+ - name : Upgrade pip
52
+ run : |
53
+ pip install --constraint=.github/workflows/constraints.txt pip
54
+ pip --version
55
+
56
+ - name : Install Poetry
52
57
run : |
53
58
python -m pip install --upgrade pip
59
+ pipx install --pip-args=--constraint=.github/workflows/constraints.txt poetry
54
60
python -m pip install --upgrade poetry
61
+ poetry --version
62
+ poetry install
55
63
56
64
- name : Install dependencies
57
65
run : poetry install
You can’t perform that action at this time.
0 commit comments