fix import in tvpaint

This commit is contained in:
Jakub Trllo 2024-06-07 11:16:26 +02:00
parent 5e9a0f5fc4
commit 075c2ede5c
2 changed files with 5 additions and 3 deletions

View file

@ -9,7 +9,7 @@ from ayon_tvpaint.api.communication_server import (
BaseCommunicator,
CommunicationWrapper
)
from ayon_core.modules.job_queue.job_workers import WorkerJobsConnection
from ayon_jobqueue.job_workers import WorkerJobsConnection
from .worker_job import ProcessTVPaintCommands

View file

@ -1,9 +1,11 @@
name = "tvpaint"
title = "TVPaint"
version = "0.2.1"
version = "0.2.2"
client_dir = "ayon_tvpaint"
ayon_required_addons = {
"core": ">0.3.2",
}
ayon_compatible_addons = {}
ayon_compatible_addons = {
"jobqueue": ">=1.1.0",
}