Skip to content

Commit

Permalink
Fix poetry-dotenv issue & update poetry libraries (#1556)
Browse files Browse the repository at this point in the history
  • Loading branch information
petechd authored Nov 25, 2024
1 parent b413fcd commit f13cee7
Show file tree
Hide file tree
Showing 4 changed files with 587 additions and 598 deletions.
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

0 comments on commit f13cee7

Please sign in to comment.