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

Fix poetry-dotenv issue & update poetry libraries #1556

Merged
merged 1 commit into from
Nov 25, 2024
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
8 changes: 4 additions & 4 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.8.3
version: 1.8.4
virtualenvs-create: true
- uses: actions/setup-python@v5
with:
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.8.3
version: 1.8.4
virtualenvs-create: true
- uses: actions/setup-python@v5
with:
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.8.3
version: 1.8.4
virtualenvs-create: true
- uses: actions/setup-python@v5
with:
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.8.3
version: 1.8.4
virtualenvs-create: true
- uses: actions/setup-python@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ COPY pyproject.toml pyproject.toml
COPY poetry.lock poetry.lock

RUN groupadd -r appuser && useradd -r -g appuser -u 9000 appuser && chown -R appuser:appuser .
RUN pip install "poetry==1.8.3" && \
RUN pip install "poetry==1.8.4" && \
poetry config virtualenvs.create false && \
poetry install --only main && \
make build
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ pip install --upgrade pip setuptools
Install poetry, poetry dotenv plugin and install dependencies:

``` shell
curl -sSL https://install.python-poetry.org | python3 - --version 1.8.3
curl -sSL https://install.python-poetry.org | python3 - --version 1.8.4
poetry self add poetry-plugin-dotenv
poetry install
```
Expand Down
Loading