Merge branch 'feature/RED-6685-support-absolute-paths' into 'master'

Upgrade pyinfra (absolute FP support)

Closes RED-6685

See merge request redactmanager/image-classification-service!5
This commit is contained in:
Julius Unverfehrt 2023-08-23 15:04:59 +02:00
commit c25f6902e0
5 changed files with 1159 additions and 1259 deletions

View File

@ -1,4 +1,8 @@
include:
- project: "Gitlab/gitlab"
ref: 0.2.3
file: "/ci-templates/research/red-dvc_versioning_build_gitlab-ci.yml"
ref: 0.2.6
file: "/ci-templates/research/dvc-versioning-build-release.gitlab-ci.yml"
variables:
NEXUS_PROJECT_DIR: red
IMAGENAME: "${CI_PROJECT_NAME}"

1
.python-version Normal file
View File

@ -0,0 +1 @@
3.8.13

2400
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "image-classification-service"
version = "1.30.2"
version = "1.33.0"
description = ""
authors = ["Team Research <research@knecon.com>"]
readme = "README.md"
@ -11,7 +11,8 @@ python = "~3.8"
dvc = "^2.34.0"
dvc-ssh = "^2.20.0"
dvc-azure = "^2.21.2"
pyinfra = { version = "1.5.9", source = "gitlab-research" }
pyinfra = { version = "1.6.0", source = "gitlab-research" }
kn-utils = { version = "0.1.4", source = "gitlab-research" }
Flask = "^2.1.1"
requests = "^2.27.1"
iteration-utilities = "^0.11.0"
@ -35,7 +36,7 @@ protobuf = "^3.20.0"
fsspec = "^2022.11.0"
PyMonad = "^2.4.0"
pdfnetpython3 = "9.4.2"
loguru = "^0.7.0"
loguru = "^0.6.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.0.1"

View File

@ -5,7 +5,7 @@ from image_prediction.pipeline import load_pipeline
from image_prediction.utils.banner import load_banner
from image_prediction.utils.process_wrapping import wrap_in_process
from pyinfra import config
from pyinfra.payload_processing import make_payload_processor
from pyinfra.payload_processing.processor import make_payload_processor
from pyinfra.queue.queue_manager import QueueManager
PYINFRA_CONFIG = config.get_config()