fractal-server 2.0.0a10__py3-none-any.whl → 2.0.0a11__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fractal_server/__init__.py +1 -1
- fractal_server/app/models/__init__.py +0 -1
- fractal_server/app/models/v1/__init__.py +1 -0
- fractal_server/app/models/{state.py → v1/state.py} +2 -2
- fractal_server/app/models/v2/__init__.py +2 -0
- fractal_server/app/models/v2/collection_state.py +21 -0
- fractal_server/app/models/v2/job.py +2 -2
- fractal_server/app/routes/admin/v2.py +4 -4
- fractal_server/app/routes/api/v2/_aux_functions.py +2 -2
- fractal_server/app/routes/api/v2/task_collection.py +4 -4
- fractal_server/app/routes/api/v2/workflowtask.py +10 -10
- fractal_server/migrations/versions/{80e12e1bc4fd_v2.py → 5bf02391cfef_v2.py} +12 -4
- fractal_server/tasks/v2/background_operations.py +2 -2
- {fractal_server-2.0.0a10.dist-info → fractal_server-2.0.0a11.dist-info}/METADATA +1 -1
- {fractal_server-2.0.0a10.dist-info → fractal_server-2.0.0a11.dist-info}/RECORD +18 -17
- {fractal_server-2.0.0a10.dist-info → fractal_server-2.0.0a11.dist-info}/LICENSE +0 -0
- {fractal_server-2.0.0a10.dist-info → fractal_server-2.0.0a11.dist-info}/WHEEL +0 -0
- {fractal_server-2.0.0a10.dist-info → fractal_server-2.0.0a11.dist-info}/entry_points.txt +0 -0
fractal_server/__init__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__VERSION__ = "2.0.
|
1
|
+
__VERSION__ = "2.0.0a11"
|
@@ -6,6 +6,7 @@ from .dataset import Resource # noqa: F401
|
|
6
6
|
from .job import ApplyWorkflow # noqa: F403, F401
|
7
7
|
from .job import JobStatusTypeV1 # noqa: F401, F403
|
8
8
|
from .project import Project # noqa: F403, F401
|
9
|
+
from .state import State # noqa: F403, F401
|
9
10
|
from .task import Task # noqa: F403, F401
|
10
11
|
from .workflow import Workflow # noqa: F401, F403
|
11
12
|
from .workflow import WorkflowTask # noqa: F401, F403
|
@@ -8,8 +8,8 @@ from sqlalchemy.types import JSON
|
|
8
8
|
from sqlmodel import Field
|
9
9
|
from sqlmodel import SQLModel
|
10
10
|
|
11
|
-
from
|
12
|
-
from
|
11
|
+
from ....utils import get_timestamp
|
12
|
+
from ...schemas.v1 import _StateBase
|
13
13
|
|
14
14
|
|
15
15
|
class State(_StateBase, SQLModel, table=True):
|
@@ -2,6 +2,7 @@
|
|
2
2
|
v2 `models` module
|
3
3
|
"""
|
4
4
|
from ..linkuserproject import LinkUserProjectV2
|
5
|
+
from .collection_state import CollectionStateV2
|
5
6
|
from .dataset import DatasetV2
|
6
7
|
from .job import JobV2
|
7
8
|
from .project import ProjectV2
|
@@ -14,6 +15,7 @@ __all__ = [
|
|
14
15
|
"DatasetV2",
|
15
16
|
"JobV2",
|
16
17
|
"ProjectV2",
|
18
|
+
"CollectionStateV2",
|
17
19
|
"TaskV2",
|
18
20
|
"WorkflowTaskV2",
|
19
21
|
"WorkflowV2",
|
@@ -0,0 +1,21 @@
|
|
1
|
+
from datetime import datetime
|
2
|
+
from typing import Any
|
3
|
+
from typing import Optional
|
4
|
+
|
5
|
+
from sqlalchemy import Column
|
6
|
+
from sqlalchemy.types import DateTime
|
7
|
+
from sqlalchemy.types import JSON
|
8
|
+
from sqlmodel import Field
|
9
|
+
from sqlmodel import SQLModel
|
10
|
+
|
11
|
+
from ....utils import get_timestamp
|
12
|
+
|
13
|
+
|
14
|
+
class CollectionStateV2(SQLModel, table=True):
|
15
|
+
|
16
|
+
id: Optional[int] = Field(default=None, primary_key=True)
|
17
|
+
data: dict[str, Any] = Field(sa_column=Column(JSON), default={})
|
18
|
+
timestamp: datetime = Field(
|
19
|
+
default_factory=get_timestamp,
|
20
|
+
sa_column=Column(DateTime(timezone=True)),
|
21
|
+
)
|
@@ -9,7 +9,7 @@ from sqlmodel import Field
|
|
9
9
|
from sqlmodel import SQLModel
|
10
10
|
|
11
11
|
from ....utils import get_timestamp
|
12
|
-
from ...schemas.
|
12
|
+
from ...schemas.v2 import JobStatusTypeV2
|
13
13
|
|
14
14
|
|
15
15
|
class JobV2(SQLModel, table=True):
|
@@ -47,5 +47,5 @@ class JobV2(SQLModel, table=True):
|
|
47
47
|
end_timestamp: Optional[datetime] = Field(
|
48
48
|
default=None, sa_column=Column(DateTime(timezone=True))
|
49
49
|
)
|
50
|
-
status: str =
|
50
|
+
status: str = JobStatusTypeV2.SUBMITTED
|
51
51
|
log: Optional[str] = None
|
@@ -20,13 +20,13 @@ from ....syringe import Inject
|
|
20
20
|
from ....utils import get_timestamp
|
21
21
|
from ...db import AsyncSession
|
22
22
|
from ...db import get_async_db
|
23
|
-
from ...models import JobStatusTypeV1
|
24
23
|
from ...models.security import UserOAuth as User
|
25
24
|
from ...models.v1 import Task
|
26
25
|
from ...models.v2 import JobV2
|
27
26
|
from ...models.v2 import ProjectV2
|
28
27
|
from ...runner.filenames import WORKFLOW_LOG_FILENAME
|
29
28
|
from ...schemas.v2 import JobReadV2
|
29
|
+
from ...schemas.v2 import JobStatusTypeV2
|
30
30
|
from ...schemas.v2 import JobUpdateV2
|
31
31
|
from ...schemas.v2 import ProjectReadV2
|
32
32
|
from ...security import current_active_superuser
|
@@ -90,7 +90,7 @@ async def view_job(
|
|
90
90
|
project_id: Optional[int] = None,
|
91
91
|
dataset_id: Optional[int] = None,
|
92
92
|
workflow_id: Optional[int] = None,
|
93
|
-
status: Optional[
|
93
|
+
status: Optional[JobStatusTypeV2] = None,
|
94
94
|
start_timestamp_min: Optional[datetime] = None,
|
95
95
|
start_timestamp_max: Optional[datetime] = None,
|
96
96
|
end_timestamp_min: Optional[datetime] = None,
|
@@ -175,7 +175,7 @@ async def view_single_job(
|
|
175
175
|
)
|
176
176
|
await db.close()
|
177
177
|
|
178
|
-
if show_tmp_logs and (job.status ==
|
178
|
+
if show_tmp_logs and (job.status == JobStatusTypeV2.SUBMITTED):
|
179
179
|
try:
|
180
180
|
with open(f"{job.working_dir}/{WORKFLOW_LOG_FILENAME}", "r") as f:
|
181
181
|
job.log = f.read()
|
@@ -208,7 +208,7 @@ async def update_job(
|
|
208
208
|
detail=f"Job {job_id} not found",
|
209
209
|
)
|
210
210
|
|
211
|
-
if job_update.status !=
|
211
|
+
if job_update.status != JobStatusTypeV2.FAILED:
|
212
212
|
raise HTTPException(
|
213
213
|
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
|
214
214
|
detail=f"Cannot set job status to {job_update.status}",
|
@@ -21,7 +21,7 @@ from ....models.v2 import ProjectV2
|
|
21
21
|
from ....models.v2 import TaskV2
|
22
22
|
from ....models.v2 import WorkflowTaskV2
|
23
23
|
from ....models.v2 import WorkflowV2
|
24
|
-
from ....schemas.
|
24
|
+
from ....schemas.v2 import JobStatusTypeV2
|
25
25
|
from ....security import User
|
26
26
|
from fractal_server.images import Filters
|
27
27
|
|
@@ -384,7 +384,7 @@ def _get_submitted_jobs_statement() -> SelectOfScalar:
|
|
384
384
|
A sqlmodel statement that selects all `Job`s with
|
385
385
|
`Job.status` equal to `submitted`.
|
386
386
|
"""
|
387
|
-
stm = select(JobV2).where(JobV2.status ==
|
387
|
+
stm = select(JobV2).where(JobV2.status == JobStatusTypeV2.SUBMITTED)
|
388
388
|
return stm
|
389
389
|
|
390
390
|
|
@@ -17,7 +17,7 @@ from .....logger import set_logger
|
|
17
17
|
from .....syringe import Inject
|
18
18
|
from ....db import AsyncSession
|
19
19
|
from ....db import get_async_db
|
20
|
-
from ....models import
|
20
|
+
from ....models import CollectionStateV2
|
21
21
|
from ....models.v2 import TaskV2
|
22
22
|
from ....schemas import StateRead
|
23
23
|
from ....schemas.v2 import TaskCollectPipV2
|
@@ -151,7 +151,7 @@ async def collect_tasks_pip(
|
|
151
151
|
),
|
152
152
|
)
|
153
153
|
task_collect_status.info = "Already installed"
|
154
|
-
state =
|
154
|
+
state = CollectionStateV2(data=task_collect_status.sanitised_dict())
|
155
155
|
response.status_code == status.HTTP_200_OK
|
156
156
|
await db.close()
|
157
157
|
return state
|
@@ -181,7 +181,7 @@ async def collect_tasks_pip(
|
|
181
181
|
# Create State object (after casting venv_path to string)
|
182
182
|
collection_status_dict = collection_status.dict()
|
183
183
|
collection_status_dict["venv_path"] = str(collection_status.venv_path)
|
184
|
-
state =
|
184
|
+
state = CollectionStateV2(data=collection_status_dict)
|
185
185
|
db.add(state)
|
186
186
|
await db.commit()
|
187
187
|
await db.refresh(state)
|
@@ -220,7 +220,7 @@ async def check_collection_status(
|
|
220
220
|
"""
|
221
221
|
logger = set_logger(logger_name="check_collection_status")
|
222
222
|
logger.debug(f"Querying state for state.id={state_id}")
|
223
|
-
state = await db.get(
|
223
|
+
state = await db.get(CollectionStateV2, state_id)
|
224
224
|
if not state:
|
225
225
|
await db.close()
|
226
226
|
raise HTTPException(
|
@@ -46,6 +46,11 @@ async def create_workflowtask(
|
|
46
46
|
|
47
47
|
if new_task.is_legacy_task is True:
|
48
48
|
task = await db.get(Task, task_id)
|
49
|
+
if not task:
|
50
|
+
raise HTTPException(
|
51
|
+
status_code=status.HTTP_404_NOT_FOUND,
|
52
|
+
detail=f"Task {task_id} not found.",
|
53
|
+
)
|
49
54
|
if not task.is_v2_compatible:
|
50
55
|
raise HTTPException(
|
51
56
|
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
|
@@ -53,16 +58,11 @@ async def create_workflowtask(
|
|
53
58
|
)
|
54
59
|
else:
|
55
60
|
task = await db.get(TaskV2, task_id)
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
error = f"TaskV2 {task_id} not found."
|
62
|
-
|
63
|
-
raise HTTPException(
|
64
|
-
status_code=status.HTTP_404_NOT_FOUND, detail=error
|
65
|
-
)
|
61
|
+
if not task:
|
62
|
+
raise HTTPException(
|
63
|
+
status_code=status.HTTP_404_NOT_FOUND,
|
64
|
+
detail=f"TaskV2 {task_id} not found.",
|
65
|
+
)
|
66
66
|
|
67
67
|
if new_task.is_legacy_task is True or task.type == "parallel":
|
68
68
|
if (
|
@@ -1,8 +1,8 @@
|
|
1
|
-
"""
|
1
|
+
"""v2
|
2
2
|
|
3
|
-
Revision ID:
|
3
|
+
Revision ID: 5bf02391cfef
|
4
4
|
Revises: 9fd26a2b0de4
|
5
|
-
Create Date: 2024-04-
|
5
|
+
Create Date: 2024-04-18 10:35:19.067833
|
6
6
|
|
7
7
|
"""
|
8
8
|
import sqlalchemy as sa
|
@@ -11,7 +11,7 @@ from alembic import op
|
|
11
11
|
|
12
12
|
|
13
13
|
# revision identifiers, used by Alembic.
|
14
|
-
revision = "
|
14
|
+
revision = "5bf02391cfef"
|
15
15
|
down_revision = "9fd26a2b0de4"
|
16
16
|
branch_labels = None
|
17
17
|
depends_on = None
|
@@ -19,6 +19,13 @@ depends_on = None
|
|
19
19
|
|
20
20
|
def upgrade() -> None:
|
21
21
|
# ### commands auto generated by Alembic - please adjust! ###
|
22
|
+
op.create_table(
|
23
|
+
"collectionstatev2",
|
24
|
+
sa.Column("id", sa.Integer(), nullable=False),
|
25
|
+
sa.Column("data", sa.JSON(), nullable=True),
|
26
|
+
sa.Column("timestamp", sa.DateTime(timezone=True), nullable=True),
|
27
|
+
sa.PrimaryKeyConstraint("id"),
|
28
|
+
)
|
22
29
|
op.create_table(
|
23
30
|
"projectv2",
|
24
31
|
sa.Column("id", sa.Integer(), nullable=False),
|
@@ -234,4 +241,5 @@ def downgrade() -> None:
|
|
234
241
|
op.drop_table("datasetv2")
|
235
242
|
op.drop_table("taskv2")
|
236
243
|
op.drop_table("projectv2")
|
244
|
+
op.drop_table("collectionstatev2")
|
237
245
|
# ### end Alembic commands ###
|
@@ -15,7 +15,7 @@ from ..utils import slugify_task_name
|
|
15
15
|
from ._TaskCollectPip import _TaskCollectPip
|
16
16
|
from fractal_server.app.db import DBSyncSession
|
17
17
|
from fractal_server.app.db import get_sync_db
|
18
|
-
from fractal_server.app.models import
|
18
|
+
from fractal_server.app.models.v2 import CollectionStateV2
|
19
19
|
from fractal_server.app.models.v2 import TaskV2
|
20
20
|
from fractal_server.app.schemas.v2 import TaskCollectStatusV2
|
21
21
|
from fractal_server.app.schemas.v2 import TaskCreateV2
|
@@ -313,7 +313,7 @@ async def background_collect_pip(
|
|
313
313
|
logger.debug(f"{key}: {value}")
|
314
314
|
|
315
315
|
with next(get_sync_db()) as db:
|
316
|
-
state:
|
316
|
+
state: CollectionStateV2 = db.get(CollectionStateV2, state_id)
|
317
317
|
data = TaskCollectStatusV2(**state.data)
|
318
318
|
data.info = None
|
319
319
|
|
@@ -1,21 +1,22 @@
|
|
1
|
-
fractal_server/__init__.py,sha256=
|
1
|
+
fractal_server/__init__.py,sha256=3s9YLGOYqSP6sC_lM9jIIhYieV3lgQqBsJSBVyRU0ZU,25
|
2
2
|
fractal_server/__main__.py,sha256=CocbzZooX1UtGqPi55GcHGNxnrJXFg5tUU5b3wyFCyo,4958
|
3
3
|
fractal_server/alembic.ini,sha256=MWwi7GzjzawI9cCAK1LW7NxIBQDUqD12-ptJoq5JpP0,3153
|
4
4
|
fractal_server/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
5
|
fractal_server/app/db/__init__.py,sha256=WZEVfdJAX7ZyBM1ngfEGeqWWcjK_NygtCbawpmbwGpU,4042
|
6
|
-
fractal_server/app/models/__init__.py,sha256=
|
6
|
+
fractal_server/app/models/__init__.py,sha256=fwlIQsf-OLF2pPVQBxo43W0hD0gYIVmnCzPp9ekDo4g,144
|
7
7
|
fractal_server/app/models/linkuserproject.py,sha256=eQaourbGRshvlMVlKzLYJKHEjfsW1CbWws9yW4eHXhA,567
|
8
8
|
fractal_server/app/models/security.py,sha256=UG9wCVA5GRSyHrYEFhH8lIF1hXykxsr9LSi8_dFToMY,3378
|
9
|
-
fractal_server/app/models/
|
10
|
-
fractal_server/app/models/v1/__init__.py,sha256=MyQa9Xi-O8tvZ1OHEo275uIuRit-CYZ5Yqh98vk4CUM,413
|
9
|
+
fractal_server/app/models/v1/__init__.py,sha256=qUlUGnWFaIm3aBXfUuLdhcW9f_s1VzAEuypr31zvHGo,458
|
11
10
|
fractal_server/app/models/v1/dataset.py,sha256=99GDgt7njx8yYQApkImqp_7bHA5HH3ElvbR6Oyj9kVI,2017
|
12
11
|
fractal_server/app/models/v1/job.py,sha256=QLGXcWdVRHaUHQNDapYYlLpEfw4K7QyD8TmcwhrWw2o,3304
|
13
12
|
fractal_server/app/models/v1/project.py,sha256=sDmAFLOBK5o4dLrwsIN681JcT5J1rzoUNTV9QVqwnA8,859
|
13
|
+
fractal_server/app/models/v1/state.py,sha256=W5XxCR9BlHXo5abCvzblkvufqpGZtM5-G11ixzMUOp4,1092
|
14
14
|
fractal_server/app/models/v1/task.py,sha256=3xZqNeFYUqslh8ddMSXF2nO4nIiOD8T5Ij37wY20kss,2782
|
15
15
|
fractal_server/app/models/v1/workflow.py,sha256=dnY5eMaOe3oZv8arn00RNX9qVkBtTLG-vYdWXcQuyo4,3950
|
16
|
-
fractal_server/app/models/v2/__init__.py,sha256=
|
16
|
+
fractal_server/app/models/v2/__init__.py,sha256=uLzdInqATSwi0bS_V4vKB-TqFrOFaXuxCAbU73c0f24,473
|
17
|
+
fractal_server/app/models/v2/collection_state.py,sha256=nxb042i8tt8rCpmgbFJoBCYWU-34m0HdUfO9YurTp8k,588
|
17
18
|
fractal_server/app/models/v2/dataset.py,sha256=-7sxHEw4IIAvF_uSan7tA3o8hvoakBkQ0SRvqS2iOQU,1455
|
18
|
-
fractal_server/app/models/v2/job.py,sha256=
|
19
|
+
fractal_server/app/models/v2/job.py,sha256=ypJmN-qspkKBGhBG7Mt-HypSQqcQ2EmB4Bzzb2-y550,1535
|
19
20
|
fractal_server/app/models/v2/project.py,sha256=CqDEKzdVxmFDMee6DnVOyX7WGmdn-dQSLSekzw_OLUc,817
|
20
21
|
fractal_server/app/models/v2/task.py,sha256=9ZPhug3VWyeqgT8wQ9_8ZXQ2crSiiicRipxrxTslOso,3257
|
21
22
|
fractal_server/app/models/v2/workflow.py,sha256=YBgFGCziUgU0aJ5EM3Svu9W2c46AewZO9VBlFCHiSps,1069
|
@@ -23,7 +24,7 @@ fractal_server/app/models/v2/workflowtask.py,sha256=kEm2k1LI0KK9vlTH7DL1NddaEUpI
|
|
23
24
|
fractal_server/app/routes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
25
|
fractal_server/app/routes/admin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
25
26
|
fractal_server/app/routes/admin/v1.py,sha256=uY6H1znlAlrM9e1MG2EThTqwciCl87Twew34JM5W6IU,13981
|
26
|
-
fractal_server/app/routes/admin/v2.py,sha256=
|
27
|
+
fractal_server/app/routes/admin/v2.py,sha256=T8-bGAL25on-ntZx_Msz9j5jq6NGhkjVl1jp3eRJUbw,9830
|
27
28
|
fractal_server/app/routes/api/__init__.py,sha256=EVyZrEq3I_1643QGTPCC5lgCp4xH_auYbrFfogTm4pc,315
|
28
29
|
fractal_server/app/routes/api/v1/__init__.py,sha256=Y2HQdG197J0a7DyQEE2jn53IfxD0EHGhzK1I2JZuEck,958
|
29
30
|
fractal_server/app/routes/api/v1/_aux_functions.py,sha256=eC5exnGj9jnJqx0ccecoNaipxDeK2ZsR1ev0syH5x-Y,11955
|
@@ -35,7 +36,7 @@ fractal_server/app/routes/api/v1/task_collection.py,sha256=_cY3pPRGchdWPuJ1XudMZ
|
|
35
36
|
fractal_server/app/routes/api/v1/workflow.py,sha256=ZObifWTPi100oRQ1wEER8Sgsr3Neo8QVdCCFQnWMNZ0,10930
|
36
37
|
fractal_server/app/routes/api/v1/workflowtask.py,sha256=ox-DIIqYV4K35hCu86eGa2SHnR5IQml-I00UHEwnmHQ,5579
|
37
38
|
fractal_server/app/routes/api/v2/__init__.py,sha256=UNgODxoEXfQpQDjvsnMvHaUWbZOrcHhEXNisLcU-0tE,1487
|
38
|
-
fractal_server/app/routes/api/v2/_aux_functions.py,sha256=
|
39
|
+
fractal_server/app/routes/api/v2/_aux_functions.py,sha256=IL1JKVqRcGfqiVbptDzpMKqi9QTYDYCCcsqIG0x0Nl8,14301
|
39
40
|
fractal_server/app/routes/api/v2/dataset.py,sha256=0JGRnK1DRQKgVA3FDhK8VdoRglLYFxgkMQOaoWI-tiQ,7853
|
40
41
|
fractal_server/app/routes/api/v2/images.py,sha256=4r_HblPWyuKSZSJZfn8mbDaLv1ncwZU0gWdKneZcNG4,7894
|
41
42
|
fractal_server/app/routes/api/v2/job.py,sha256=9mXaKCX_N3FXM0GIxdE49nWl_hJZ8CBLBIaMMhaCKOM,5334
|
@@ -43,10 +44,10 @@ fractal_server/app/routes/api/v2/project.py,sha256=i9a19HAqE36N92G60ZYgObIP9nv-h
|
|
43
44
|
fractal_server/app/routes/api/v2/status.py,sha256=3bqQejJ3TnIMan5wK6jr9sv4ypsQr9WWU8xqlvTgDCE,5739
|
44
45
|
fractal_server/app/routes/api/v2/submit.py,sha256=iszII5CvWDEjGPTphBgH9FVS1pNb5m11Xc8xozGgjgI,6901
|
45
46
|
fractal_server/app/routes/api/v2/task.py,sha256=gJ0LruSk-Q1iMw8ZOX8C0wrZ4S4DGlQTr_5SdJJud0Q,7130
|
46
|
-
fractal_server/app/routes/api/v2/task_collection.py,sha256=
|
47
|
+
fractal_server/app/routes/api/v2/task_collection.py,sha256=O5eg40P-TwYy6azGh0DpyN6Rya9FfhRHQDf4qpYIGEE,8952
|
47
48
|
fractal_server/app/routes/api/v2/task_legacy.py,sha256=P_VJv9v0yzFUBuS-DQHhMVSOe20ecGJJcFBqiiFciOM,1628
|
48
49
|
fractal_server/app/routes/api/v2/workflow.py,sha256=sw-1phO_rrmDAcWX9Zqb9M8SfrWF78-02AuLB1-D1PU,11845
|
49
|
-
fractal_server/app/routes/api/v2/workflowtask.py,sha256=
|
50
|
+
fractal_server/app/routes/api/v2/workflowtask.py,sha256=l4eTD5IIun5cOdYzsxh3ajmnOISaSccYA_mVf15Cjtw,8802
|
50
51
|
fractal_server/app/routes/auth.py,sha256=Xv80iqdyfY3lyicYs2Y8B6zEDEnyUu_H6_6psYtv3R4,4885
|
51
52
|
fractal_server/app/routes/aux/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
52
53
|
fractal_server/app/routes/aux/_job.py,sha256=5gKgvArAruSkMQuPN34Vvzi89WJbwWPsx0oDAa_iXu4,1248
|
@@ -133,9 +134,9 @@ fractal_server/migrations/script.py.mako,sha256=oMXw9LC3zRbinWWPPDgeZ4z9FJrV2zhR
|
|
133
134
|
fractal_server/migrations/versions/4c308bcaea2b_add_task_args_schema_and_task_args_.py,sha256=-wHe-fOffmYeAm0JXVl_lxZ7hhDkaEVqxgxpHkb_uL8,954
|
134
135
|
fractal_server/migrations/versions/4cedeb448a53_workflowtask_foreign_keys_not_nullables.py,sha256=Mob8McGYAcmgvrseyyYOa54E6Gsgr-4SiGdC-r9O4_A,1157
|
135
136
|
fractal_server/migrations/versions/50a13d6138fd_initial_schema.py,sha256=zwXegXs9J40eyCWi3w0c_iIBVJjXNn4VdVnQaT3KxDg,8770
|
137
|
+
fractal_server/migrations/versions/5bf02391cfef_v2.py,sha256=axhNkr_H6R4rRbY7oGYazNbFvPXeSyBDWFVbKNmiqs8,8433
|
136
138
|
fractal_server/migrations/versions/70e77f1c38b0_add_applyworkflow_first_task_index_and_.py,sha256=Q-DsMzG3IcUV2Ol1dhJWosDvKERamBE6QvA2zzS5zpQ,1632
|
137
139
|
fractal_server/migrations/versions/71eefd1dd202_add_slurm_accounts.py,sha256=mbWuCkTpRAdGbRhW7lhXs_e5S6O37UAcCN6JfoY5H8A,1353
|
138
|
-
fractal_server/migrations/versions/80e12e1bc4fd_v2.py,sha256=WsgwzUVN2WNkaDaLawpYGwvGfoYmD0Vl3EZFdrIqXhg,8116
|
139
140
|
fractal_server/migrations/versions/84bf0fffde30_add_dumps_to_applyworkflow.py,sha256=NSCuhANChsg76vBkShBl-9tQ4VEHubOjtAv1etHhlvY,2684
|
140
141
|
fractal_server/migrations/versions/8f79bd162e35_add_docs_info_and_docs_link_to_task_.py,sha256=6pgODDtyAxevZvAJBj9IJ41inhV1RpwbpZr_qfPPu1A,1115
|
141
142
|
fractal_server/migrations/versions/97f444d47249_add_applyworkflow_project_dump.py,sha256=eKTZm3EgUgapXBxO0RuHkEfTKic-TZG3ADaMpGLuc0k,1057
|
@@ -157,12 +158,12 @@ fractal_server/tasks/v1/background_operations.py,sha256=T5L-ghgGEJIGcGoZB_r0cjH9
|
|
157
158
|
fractal_server/tasks/v1/get_collection_data.py,sha256=bi9tuApLgoKZNMIG1kR4GoKI9S6Y040gFfNQapw4ikM,502
|
158
159
|
fractal_server/tasks/v2/_TaskCollectPip.py,sha256=QeCqXDgOnMjk3diVlC5bgGEywyQjYFm5637Rke49vJY,3775
|
159
160
|
fractal_server/tasks/v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
160
|
-
fractal_server/tasks/v2/background_operations.py,sha256=
|
161
|
+
fractal_server/tasks/v2/background_operations.py,sha256=fUukEA-zFjUDhxgI3oO_Bvy7FinaYFaydciASOIbL3w,12842
|
161
162
|
fractal_server/tasks/v2/get_collection_data.py,sha256=Qhf2T_aaqAfqu9_KpUSlXsS7EJoZQbEPEreHHa2jco8,502
|
162
163
|
fractal_server/urls.py,sha256=5o_qq7PzKKbwq12NHSQZDmDitn5RAOeQ4xufu-2v9Zk,448
|
163
164
|
fractal_server/utils.py,sha256=b7WwFdcFZ8unyT65mloFToYuEDXpQoHRcmRNqrhd_dQ,2115
|
164
|
-
fractal_server-2.0.
|
165
|
-
fractal_server-2.0.
|
166
|
-
fractal_server-2.0.
|
167
|
-
fractal_server-2.0.
|
168
|
-
fractal_server-2.0.
|
165
|
+
fractal_server-2.0.0a11.dist-info/LICENSE,sha256=QKAharUuhxL58kSoLizKJeZE3mTCBnX6ucmz8W0lxlk,1576
|
166
|
+
fractal_server-2.0.0a11.dist-info/METADATA,sha256=vFS5XczcfUY_lJ0uxHE2LAm_9pwDShIGzl_jjC6Cwdo,4201
|
167
|
+
fractal_server-2.0.0a11.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
168
|
+
fractal_server-2.0.0a11.dist-info/entry_points.txt,sha256=8tV2kynvFkjnhbtDnxAqImL6HMVKsopgGfew0DOp5UY,58
|
169
|
+
fractal_server-2.0.0a11.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|