@@ -24,18 +24,15 @@ jobs:
24
24
- name : Checkout
25
25
uses : actions/checkout@v3
26
26
27
+ - name : Set up Poetry
28
+ # Need to use version < 1.2.0 in order to support Python 3.6
29
+ run : pipx install poetry==1.1.15
30
+
27
31
- name : Set up Python ${{ matrix.python-version }}
28
32
uses : actions/setup-python@v4
29
33
with :
30
34
python-version : ${{ matrix.python-version }}
31
- cache : pip
32
- cache-dependency-path : poetry.lock
33
-
34
- - name : Set up Poetry
35
- uses : abatilo/actions-poetry@v2
36
- with :
37
- # Need to use version < 1.2.0 in order to support Python 3.6
38
- poetry-version : 1.1.15
35
+ cache : poetry
39
36
40
37
- name : Set up dependencies
41
38
run : |
@@ -62,18 +59,15 @@ jobs:
62
59
- name : Checkout
63
60
uses : actions/checkout@v3
64
61
62
+ - name : Set up Poetry
63
+ # Need to use version < 1.2.0 in order to support Python 3.6
64
+ run : pipx install poetry==1.1.15
65
+
65
66
- name : Set up Python ${{ matrix.python-version }}
66
67
uses : actions/setup-python@v4
67
68
with :
68
69
python-version : ${{ matrix.python-version }}
69
- cache : pip
70
- cache-dependency-path : poetry.lock
71
-
72
- - name : Set up Poetry
73
- uses : abatilo/actions-poetry@v2
74
- with :
75
- # Need to use version < 1.2.0 in order to support Python 3.6
76
- poetry-version : 1.1.15
70
+ cache : poetry
77
71
78
72
- name : Set up dependencies
79
73
run : |
@@ -100,18 +94,15 @@ jobs:
100
94
- name : Checkout
101
95
uses : actions/checkout@v3
102
96
97
+ - name : Set up Poetry
98
+ # Need to use version < 1.2.0 in order to support Python 3.6
99
+ run : pipx install poetry==1.1.15
100
+
103
101
- name : Set up Python ${{ matrix.python-version }}
104
102
uses : actions/setup-python@v4
105
103
with :
106
104
python-version : ${{ matrix.python-version }}
107
- cache : pip
108
- cache-dependency-path : poetry.lock
109
-
110
- - name : Set up Poetry
111
- uses : abatilo/actions-poetry@v2
112
- with :
113
- # Need to use version < 1.2.0 in order to support Python 3.6
114
- poetry-version : 1.1.15
105
+ cache : poetry
115
106
116
107
- name : Set up dependencies
117
108
run : |
0 commit comments