File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -15,13 +15,12 @@ jobs:
15
15
- uses : actions/setup-python@v5
16
16
with :
17
17
python-version : ' 3.11'
18
- - name : Install and configure Poetry
19
- uses : snok/install-poetry@v1
20
- with :
21
- version : 1.8.3
22
- virtualenvs-create : false
23
- virtualenvs-in-project : false
24
- installer-parallel : true
18
+ - name : Install poetry
19
+ run : |
20
+ pip install poetry==1.8.4 &&
21
+ poetry config virtualenvs.create false &&
22
+ poetry config virtualenvs.in-project false &&
23
+ poetry config installer.parallel true
25
24
- name : Restore dependencies
26
25
run : poetry install --no-root
27
26
- name : Extract functionInputSchema
Original file line number Diff line number Diff line change 2
2
FROM python:3.11-slim
3
3
4
4
# We install poetry to generate a list of dependencies which will be required by our application
5
- RUN pip install poetry
5
+ RUN pip install poetry==1.8.4
6
6
7
7
# We set the working directory to be the /home/speckle directory; all of our files will be copied here.
8
8
WORKDIR /home/speckle
You can’t perform that action at this time.
0 commit comments