Skip to content

Commit

Permalink
Update dependencies (#50) #patch
Browse files Browse the repository at this point in the history
* Bump werkzeug from 2.3.6 to 3.0.1

Bumps [werkzeug](https://github.com/pallets/werkzeug) from 2.3.6 to 3.0.1.
- [Release notes](https://github.com/pallets/werkzeug/releases)
- [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst)
- [Commits](pallets/werkzeug@2.3.6...3.0.1)

---
updated-dependencies:
- dependency-name: werkzeug
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update python to 3.12 and quart to 0.19.3

* Use python 3.12 in workflows

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
maltekrupa and dependabot[bot] authored Oct 26, 2023
1 parent e029276 commit 26005a3
Show file tree
Hide file tree
Showing 4 changed files with 254 additions and 209 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
python-version: "3.11"
python-version: "3.12"
- uses: dschep/install-pipenv-action@v1
- name: Install dependencies
run: |
Expand All @@ -27,10 +27,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
python-version: "3.11"
python-version: "3.12"
- uses: dschep/install-pipenv-action@v1
- name: Install dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-alpine3.16 AS build-image
FROM python:3.12-alpine3.18 AS build-image

ENV WORKDIR /app
ENV PYTHONUSERBASE $WORKDIR
Expand All @@ -13,7 +13,7 @@ ADD . $WORKDIR
RUN PIP_USER=1 PIP_IGNORE_INSTALLED=1 pipenv install --system --deploy


FROM python:3.11-alpine3.16 AS runtime-image
FROM python:3.12-alpine3.18 AS runtime-image

LABEL org.opencontainers.image.source=https://github.com/maltekrupa/clamav-rest

Expand Down
4 changes: 2 additions & 2 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ pytest-asyncio = '==0.21.1'
[packages]
clamd = { git = 'https://github.com/temal-/python-clamd-async.git', ref = '1.1.1' }
hypercorn = {extras = ['uvloop'], version = '==0.14.4'}
quart = '==0.18.4'
quart = '==0.19.3'
aioprometheus = '==23.3.0'
json-logging = '==1.3.0'

[requires]
python_version = '3.11'
python_version = '3.12'
Loading

0 comments on commit 26005a3

Please sign in to comment.