Skip to content

Commit 1812cfc

Browse files
committed
refactor: change minimal python version
1 parent 64659f2 commit 1812cfc

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Pre Production CI
1+
name: Lint Code
22

33
on:
44
push:

.github/workflows/production_workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Deploy project
22

33
on:
44
workflow_run:
5-
workflows: ["Pre Production CI"]
5+
workflows: ["Lint Code"]
66
types:
77
- completed
88

@@ -31,7 +31,7 @@ jobs:
3131
ssh -i ./private_key.pem $SERVER_USER@$SERVER_IP '
3232
pushd ./pdf-service > /dev/null &&
3333
git pull &&
34-
.venv/bin/uv sync &&
34+
.venv/bin/uv pip install . &&
3535
popd > /dev/null &&
3636
sudo systemctl restart pdf-service.service
3737
'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "pdf-reductor"
33
version = "0.1.0"
44
description = "PDF compression and manipulation microservice using FastAPI, Ghostscript and qpdf"
55
readme = "README.md"
6-
requires-python = ">=3.13"
6+
requires-python = ">=3.11"
77
dependencies = [
88
"fastapi[standard]>=0.118.0",
99
]

0 commit comments

Comments
 (0)