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 Dec 14, 2024
1 parent 9c4c19d commit 689b9a2
Show file tree
Hide file tree
Showing 5 changed files with 744 additions and 860 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 @@ -23,7 +23,7 @@ jobs:
- name: Install poetry
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
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 @@ -22,7 +22,7 @@ jobs:
- name: Install poetry
run: pipx install poetry
- name: Set up Python 3.10
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: 'poetry'
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.12 as requirements-stage
FROM python:3.13 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.12
FROM python:3.13
WORKDIR /code
# install required python packages
COPY --from=requirements-stage /tmp/requirements.txt /code/requirements.txt
Expand Down
Loading

0 comments on commit 689b9a2

Please sign in to comment.