Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update poetry to 1.2.1 #540

Merged
merged 2 commits into from
Sep 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/poetry/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ inputs:
version:
description: "Version of poetry to install"
required: false
default: "1.1.12"
default: "1.2.1"

outputs:
version:
Expand Down
2 changes: 1 addition & 1 deletion docker/app_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ echo "if [[ -f $SIMPLIFIED_ENVIRONMENT ]]; then \
source $SIMPLIFIED_ENVIRONMENT; fi" >> env/bin/activate

# Install Python libraries.
poetry install --no-dev --no-root -E pg
poetry install --only main --no-root -E pg
poetry cache clear -n --all pypi

# Install NLTK.
Expand Down
2 changes: 1 addition & 1 deletion docker/system_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ install_clean --no-upgrade \
pkg-config

# Install Poetry
curl -sSL https://install.python-poetry.org | POETRY_HOME="/opt/poetry" python3 - --yes --version "1.1.12"
curl -sSL https://install.python-poetry.org | POETRY_HOME="/opt/poetry" python3 - --yes --version "1.2.1"
ln -s /opt/poetry/bin/poetry /bin/poetry

# Copy scripts that run at startup.
Expand Down