Skip to content

Commit 9b12d06

Browse files
authored
chore(deps): pin poetry better (#37)
1 parent 66f5194 commit 9b12d06

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,12 @@ jobs:
1515
- uses: actions/setup-python@v5
1616
with:
1717
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
2524
- name: Restore dependencies
2625
run: poetry install --no-root
2726
- name: Extract functionInputSchema

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
FROM python:3.11-slim
33

44
# 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
66

77
# We set the working directory to be the /home/speckle directory; all of our files will be copied here.
88
WORKDIR /home/speckle

0 commit comments

Comments
 (0)