Skip to content

Commit

Permalink
chore(deps): pin poetry better (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdriesler authored Jan 15, 2025
1 parent 66f5194 commit 9b12d06
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,12 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
version: 1.8.3
virtualenvs-create: false
virtualenvs-in-project: false
installer-parallel: true
- name: Install poetry
run: |
pip install poetry==1.8.4 &&
poetry config virtualenvs.create false &&
poetry config virtualenvs.in-project false &&
poetry config installer.parallel true
- name: Restore dependencies
run: poetry install --no-root
- name: Extract functionInputSchema
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM python:3.11-slim

# We install poetry to generate a list of dependencies which will be required by our application
RUN pip install poetry
RUN pip install poetry==1.8.4

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

0 comments on commit 9b12d06

Please sign in to comment.