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

build(deps): bump numpy from 1.24.4 to 1.26.2 in /app/video-processing #111

Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/vidserver-test-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
python-version: '3.9'
cache: 'pip'
cache-dependency-path: "**/requirements.txt"
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions app/video-processing/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/library/python:3.8-slim-bullseye AS builder
FROM docker.io/library/python:3.9-slim-bullseye AS builder

USER root

Expand All @@ -14,7 +14,7 @@ COPY requirements.txt .

RUN pip wheel --no-cache-dir --no-deps --wheel-dir /build/wheels -r requirements.txt

FROM docker.io/library/python:3.8-slim-bullseye AS runner
FROM docker.io/library/python:3.9-slim-bullseye AS runner

USER root

Expand Down
2 changes: 1 addition & 1 deletion app/video-processing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ PrivacyPal Video Processing service can be configured via the following environm
## TESTING

### Requirements
- Python 3.8
- Python 3.9
- boto3 v1.28.64
- botocore v1.31.64
- numpy v1.24.4
Expand Down
2 changes: 1 addition & 1 deletion app/video-processing/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
boto3==1.29.4
botocore==1.32.4
numpy==1.24.4
numpy==1.26.2
opencv-python-headless==4.8.1.78
flask==3.0.0
quart==0.19.4
Expand Down
Loading