Skip to content

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 23, 2023
1 parent c730a3b commit 5226a91
Show file tree
Hide file tree
Showing 5 changed files with 690 additions and 654 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code_style_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
python-version: ["3.10"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Set up Python 3.10
Expand Down
4 changes: 2 additions & 2 deletions oeffikator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# From the Fastapi website (https://fastapi.tiangolo.com/deployment/docker/#docker-image-with-poetry)
FROM python:3.11 as requirements-stage
FROM python:3.12 as requirements-stage
# create requirements.txt from poetry
WORKDIR /tmp
RUN pip install poetry
COPY . /tmp/
RUN poetry build && poetry export -f requirements.txt --output requirements.txt --without-hashes --without code_check,test
FROM python:3.11
FROM python:3.12
WORKDIR /code
# install required python packages
COPY --from=requirements-stage /tmp/requirements.txt /code/requirements.txt
Expand Down
Loading

0 comments on commit 5226a91

Please sign in to comment.