fractal-server 2.18.5__py3-none-any.whl → 2.19.0__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/db/__init__.py +1 -7
- fractal_server/app/models/security.py +16 -0
- fractal_server/app/models/v2/dataset.py +0 -4
- fractal_server/app/models/v2/job.py +4 -0
- fractal_server/app/models/v2/task.py +0 -1
- fractal_server/app/models/v2/task_group.py +4 -0
- fractal_server/app/models/v2/workflow.py +2 -0
- fractal_server/app/models/v2/workflowtask.py +3 -0
- fractal_server/app/routes/admin/v2/job.py +0 -2
- fractal_server/app/routes/admin/v2/sharing.py +47 -0
- fractal_server/app/routes/admin/v2/task.py +0 -5
- fractal_server/app/routes/admin/v2/task_group_lifecycle.py +6 -0
- fractal_server/app/routes/api/__init__.py +4 -52
- fractal_server/app/routes/api/alive.py +13 -0
- fractal_server/app/routes/api/settings.py +44 -0
- fractal_server/app/routes/api/v2/__init__.py +0 -2
- fractal_server/app/routes/api/v2/_aux_functions_task_lifecycle.py +1 -20
- fractal_server/app/routes/api/v2/dataset.py +9 -8
- fractal_server/app/routes/api/v2/history.py +8 -8
- fractal_server/app/routes/api/v2/images.py +6 -6
- fractal_server/app/routes/api/v2/job.py +10 -12
- fractal_server/app/routes/api/v2/pre_submission_checks.py +3 -3
- fractal_server/app/routes/api/v2/project.py +7 -9
- fractal_server/app/routes/api/v2/sharing.py +17 -9
- fractal_server/app/routes/api/v2/submit.py +5 -3
- fractal_server/app/routes/api/v2/task.py +7 -9
- fractal_server/app/routes/api/v2/task_collection.py +4 -2
- fractal_server/app/routes/api/v2/task_collection_custom.py +2 -2
- fractal_server/app/routes/api/v2/task_collection_pixi.py +4 -2
- fractal_server/app/routes/api/v2/task_group.py +10 -30
- fractal_server/app/routes/api/v2/task_group_lifecycle.py +10 -4
- fractal_server/app/routes/api/v2/task_version_update.py +4 -3
- fractal_server/app/routes/api/v2/workflow.py +10 -11
- fractal_server/app/routes/api/v2/workflow_import.py +14 -45
- fractal_server/app/routes/api/v2/workflowtask.py +7 -12
- fractal_server/app/routes/auth/__init__.py +18 -1
- fractal_server/app/routes/auth/current_user.py +8 -0
- fractal_server/app/routes/auth/oauth.py +3 -1
- fractal_server/app/routes/auth/users.py +11 -0
- fractal_server/app/routes/aux/_versions.py +42 -0
- fractal_server/app/schemas/user.py +7 -0
- fractal_server/app/schemas/v2/__init__.py +0 -1
- fractal_server/app/schemas/v2/dumps.py +0 -1
- fractal_server/app/schemas/v2/task.py +0 -5
- fractal_server/app/schemas/v2/workflow.py +2 -0
- fractal_server/app/schemas/v2/workflowtask.py +6 -2
- fractal_server/app/security/__init__.py +8 -3
- fractal_server/migrations/versions/18a26fcdea5d_drop_dataset_history.py +41 -0
- fractal_server/migrations/versions/1bf8785755f9_add_description_to_workflow_and_.py +53 -0
- fractal_server/migrations/versions/5fb08bf05b14_drop_taskv2_source.py +36 -0
- fractal_server/migrations/versions/cfd13f7954e7_add_fractal_server_version_to_jobv2_and_.py +52 -0
- fractal_server/migrations/versions/e53dc51fdf93_add_useroauth_is_guest.py +36 -0
- fractal_server/runner/executors/local/runner.py +2 -0
- fractal_server/runner/executors/slurm_ssh/runner.py +5 -0
- fractal_server/runner/executors/slurm_sudo/runner.py +5 -0
- fractal_server/runner/v2/runner.py +0 -1
- fractal_server/runner/v2/submit_workflow.py +0 -3
- {fractal_server-2.18.5.dist-info → fractal_server-2.19.0.dist-info}/METADATA +3 -3
- {fractal_server-2.18.5.dist-info → fractal_server-2.19.0.dist-info}/RECORD +63 -56
- {fractal_server-2.18.5.dist-info → fractal_server-2.19.0.dist-info}/WHEEL +1 -1
- fractal_server/app/routes/api/v2/status_legacy.py +0 -156
- {fractal_server-2.18.5.dist-info → fractal_server-2.19.0.dist-info}/entry_points.txt +0 -0
- {fractal_server-2.18.5.dist-info → fractal_server-2.19.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"""Add description to workflow and description and alias to workflow task
|
|
2
|
+
|
|
3
|
+
Revision ID: 1bf8785755f9
|
|
4
|
+
Revises: 5fb08bf05b14
|
|
5
|
+
Create Date: 2026-01-26 09:03:18.396841
|
|
6
|
+
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
import sqlalchemy as sa
|
|
10
|
+
import sqlmodel
|
|
11
|
+
from alembic import op
|
|
12
|
+
|
|
13
|
+
# revision identifiers, used by Alembic.
|
|
14
|
+
revision = "1bf8785755f9"
|
|
15
|
+
down_revision = "5fb08bf05b14"
|
|
16
|
+
branch_labels = None
|
|
17
|
+
depends_on = None
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
def upgrade() -> None:
|
|
21
|
+
# ### commands auto generated by Alembic - please adjust! ###
|
|
22
|
+
with op.batch_alter_table("workflowtaskv2", schema=None) as batch_op:
|
|
23
|
+
batch_op.add_column(
|
|
24
|
+
sa.Column(
|
|
25
|
+
"alias", sqlmodel.sql.sqltypes.AutoString(), nullable=True
|
|
26
|
+
)
|
|
27
|
+
)
|
|
28
|
+
batch_op.add_column(
|
|
29
|
+
sa.Column(
|
|
30
|
+
"description", sqlmodel.sql.sqltypes.AutoString(), nullable=True
|
|
31
|
+
)
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
with op.batch_alter_table("workflowv2", schema=None) as batch_op:
|
|
35
|
+
batch_op.add_column(
|
|
36
|
+
sa.Column(
|
|
37
|
+
"description", sqlmodel.sql.sqltypes.AutoString(), nullable=True
|
|
38
|
+
)
|
|
39
|
+
)
|
|
40
|
+
|
|
41
|
+
# ### end Alembic commands ###
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
def downgrade() -> None:
|
|
45
|
+
# ### commands auto generated by Alembic - please adjust! ###
|
|
46
|
+
with op.batch_alter_table("workflowv2", schema=None) as batch_op:
|
|
47
|
+
batch_op.drop_column("description")
|
|
48
|
+
|
|
49
|
+
with op.batch_alter_table("workflowtaskv2", schema=None) as batch_op:
|
|
50
|
+
batch_op.drop_column("description")
|
|
51
|
+
batch_op.drop_column("alias")
|
|
52
|
+
|
|
53
|
+
# ### end Alembic commands ###
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"""drop TaskV2.source
|
|
2
|
+
|
|
3
|
+
Revision ID: 5fb08bf05b14
|
|
4
|
+
Revises: e53dc51fdf93
|
|
5
|
+
Create Date: 2026-01-21 12:50:39.072816
|
|
6
|
+
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
import sqlalchemy as sa
|
|
10
|
+
from alembic import op
|
|
11
|
+
|
|
12
|
+
# revision identifiers, used by Alembic.
|
|
13
|
+
revision = "5fb08bf05b14"
|
|
14
|
+
down_revision = "e53dc51fdf93"
|
|
15
|
+
branch_labels = None
|
|
16
|
+
depends_on = None
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
def upgrade() -> None:
|
|
20
|
+
# ### commands auto generated by Alembic - please adjust! ###
|
|
21
|
+
with op.batch_alter_table("taskv2", schema=None) as batch_op:
|
|
22
|
+
batch_op.drop_column("source")
|
|
23
|
+
|
|
24
|
+
# ### end Alembic commands ###
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
def downgrade() -> None:
|
|
28
|
+
# ### commands auto generated by Alembic - please adjust! ###
|
|
29
|
+
with op.batch_alter_table("taskv2", schema=None) as batch_op:
|
|
30
|
+
batch_op.add_column(
|
|
31
|
+
sa.Column(
|
|
32
|
+
"source", sa.VARCHAR(), autoincrement=False, nullable=True
|
|
33
|
+
)
|
|
34
|
+
)
|
|
35
|
+
|
|
36
|
+
# ### end Alembic commands ###
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"""add fractal_server_version to jobv2 and taskgroupactivityv2
|
|
2
|
+
|
|
3
|
+
Revision ID: cfd13f7954e7
|
|
4
|
+
Revises: 18a26fcdea5d
|
|
5
|
+
Create Date: 2026-01-29 12:33:00.064562
|
|
6
|
+
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
import sqlalchemy as sa
|
|
10
|
+
from alembic import op
|
|
11
|
+
|
|
12
|
+
# revision identifiers, used by Alembic.
|
|
13
|
+
revision = "cfd13f7954e7"
|
|
14
|
+
down_revision = "18a26fcdea5d"
|
|
15
|
+
branch_labels = None
|
|
16
|
+
depends_on = None
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
def upgrade() -> None:
|
|
20
|
+
# ### commands auto generated by Alembic - please adjust! ###
|
|
21
|
+
with op.batch_alter_table("jobv2", schema=None) as batch_op:
|
|
22
|
+
batch_op.add_column(
|
|
23
|
+
sa.Column(
|
|
24
|
+
"fractal_server_version",
|
|
25
|
+
sa.String(),
|
|
26
|
+
server_default="pre-2.19.0",
|
|
27
|
+
nullable=False,
|
|
28
|
+
)
|
|
29
|
+
)
|
|
30
|
+
|
|
31
|
+
with op.batch_alter_table("taskgroupactivityv2", schema=None) as batch_op:
|
|
32
|
+
batch_op.add_column(
|
|
33
|
+
sa.Column(
|
|
34
|
+
"fractal_server_version",
|
|
35
|
+
sa.String(),
|
|
36
|
+
server_default="pre-2.19.0",
|
|
37
|
+
nullable=False,
|
|
38
|
+
)
|
|
39
|
+
)
|
|
40
|
+
|
|
41
|
+
# ### end Alembic commands ###
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
def downgrade() -> None:
|
|
45
|
+
# ### commands auto generated by Alembic - please adjust! ###
|
|
46
|
+
with op.batch_alter_table("taskgroupactivityv2", schema=None) as batch_op:
|
|
47
|
+
batch_op.drop_column("fractal_server_version")
|
|
48
|
+
|
|
49
|
+
with op.batch_alter_table("jobv2", schema=None) as batch_op:
|
|
50
|
+
batch_op.drop_column("fractal_server_version")
|
|
51
|
+
|
|
52
|
+
# ### end Alembic commands ###
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"""add UserOAuth.is_guest
|
|
2
|
+
|
|
3
|
+
Revision ID: e53dc51fdf93
|
|
4
|
+
Revises: 068496367952
|
|
5
|
+
Create Date: 2026-01-14 14:32:25.044504
|
|
6
|
+
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
import sqlalchemy as sa
|
|
10
|
+
from alembic import op
|
|
11
|
+
|
|
12
|
+
# revision identifiers, used by Alembic.
|
|
13
|
+
revision = "e53dc51fdf93"
|
|
14
|
+
down_revision = "068496367952"
|
|
15
|
+
branch_labels = None
|
|
16
|
+
depends_on = None
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
def upgrade() -> None:
|
|
20
|
+
# ### commands auto generated by Alembic - please adjust! ###
|
|
21
|
+
with op.batch_alter_table("user_oauth", schema=None) as batch_op:
|
|
22
|
+
batch_op.add_column(
|
|
23
|
+
sa.Column(
|
|
24
|
+
"is_guest", sa.BOOLEAN(), server_default="false", nullable=False
|
|
25
|
+
)
|
|
26
|
+
)
|
|
27
|
+
|
|
28
|
+
# ### end Alembic commands ###
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
def downgrade() -> None:
|
|
32
|
+
# ### commands auto generated by Alembic - please adjust! ###
|
|
33
|
+
with op.batch_alter_table("user_oauth", schema=None) as batch_op:
|
|
34
|
+
batch_op.drop_column("is_guest")
|
|
35
|
+
|
|
36
|
+
# ### end Alembic commands ###
|
|
@@ -3,6 +3,7 @@ from concurrent.futures import Future
|
|
|
3
3
|
from concurrent.futures import ThreadPoolExecutor
|
|
4
4
|
from pathlib import Path
|
|
5
5
|
from typing import Any
|
|
6
|
+
from typing import override
|
|
6
7
|
|
|
7
8
|
from fractal_server.app.db import get_sync_db
|
|
8
9
|
from fractal_server.app.models import Profile
|
|
@@ -91,6 +92,7 @@ class LocalRunner(BaseRunner):
|
|
|
91
92
|
)
|
|
92
93
|
return self.executor.__exit__(exc_type, exc_val, exc_tb)
|
|
93
94
|
|
|
95
|
+
@override
|
|
94
96
|
def submit(
|
|
95
97
|
self,
|
|
96
98
|
*,
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import time
|
|
2
2
|
from pathlib import Path
|
|
3
|
+
from typing import override
|
|
3
4
|
|
|
4
5
|
from fractal_server.app.models import Profile
|
|
5
6
|
from fractal_server.app.models import Resource
|
|
@@ -64,9 +65,11 @@ class SlurmSSHRunner(BaseSlurmRunner):
|
|
|
64
65
|
slurm_account=slurm_account,
|
|
65
66
|
)
|
|
66
67
|
|
|
68
|
+
@override
|
|
67
69
|
def _mkdir_local_folder(self, folder: str) -> None:
|
|
68
70
|
Path(folder).mkdir(parents=True)
|
|
69
71
|
|
|
72
|
+
@override
|
|
70
73
|
def _mkdir_remote_folder(self, folder: str):
|
|
71
74
|
self.fractal_ssh.mkdir(
|
|
72
75
|
folder=folder,
|
|
@@ -169,6 +172,7 @@ class SlurmSSHRunner(BaseSlurmRunner):
|
|
|
169
172
|
t_1 = time.perf_counter()
|
|
170
173
|
logger.info(f"[_fetch_artifacts] End - elapsed={t_1 - t_0:.3f} s")
|
|
171
174
|
|
|
175
|
+
@override
|
|
172
176
|
def _run_remote_cmd(self, cmd: str) -> str:
|
|
173
177
|
stdout = self.fractal_ssh.run_command(cmd=cmd)
|
|
174
178
|
return stdout
|
|
@@ -232,6 +236,7 @@ class SlurmSSHRunner(BaseSlurmRunner):
|
|
|
232
236
|
|
|
233
237
|
logger.debug("[_send_many_job_inputs] END.")
|
|
234
238
|
|
|
239
|
+
@override
|
|
235
240
|
def run_squeue(self, *, job_ids: list[str]) -> str:
|
|
236
241
|
"""
|
|
237
242
|
Run `squeue` for a set of SLURM job IDs.
|
|
@@ -4,6 +4,7 @@ import shlex
|
|
|
4
4
|
import subprocess # nosec
|
|
5
5
|
from concurrent.futures import ThreadPoolExecutor
|
|
6
6
|
from pathlib import Path
|
|
7
|
+
from typing import override
|
|
7
8
|
|
|
8
9
|
from fractal_server.app.models import Profile
|
|
9
10
|
from fractal_server.app.models import Resource
|
|
@@ -85,11 +86,13 @@ class SlurmSudoRunner(BaseSlurmRunner):
|
|
|
85
86
|
slurm_account=slurm_account,
|
|
86
87
|
)
|
|
87
88
|
|
|
89
|
+
@override
|
|
88
90
|
def _mkdir_local_folder(self, folder: str) -> None:
|
|
89
91
|
original_umask = os.umask(0)
|
|
90
92
|
Path(folder).mkdir(parents=True, mode=0o755)
|
|
91
93
|
os.umask(original_umask)
|
|
92
94
|
|
|
95
|
+
@override
|
|
93
96
|
def _mkdir_remote_folder(self, folder: str) -> None:
|
|
94
97
|
_mkdir_as_user(folder=folder, user=self.slurm_user)
|
|
95
98
|
|
|
@@ -164,6 +167,7 @@ class SlurmSudoRunner(BaseSlurmRunner):
|
|
|
164
167
|
)
|
|
165
168
|
logger.debug("[_fetch_artifacts] END.")
|
|
166
169
|
|
|
170
|
+
@override
|
|
167
171
|
def _run_remote_cmd(self, cmd: str) -> str:
|
|
168
172
|
res = _run_command_as_user(
|
|
169
173
|
cmd=cmd,
|
|
@@ -172,6 +176,7 @@ class SlurmSudoRunner(BaseSlurmRunner):
|
|
|
172
176
|
)
|
|
173
177
|
return res.stdout
|
|
174
178
|
|
|
179
|
+
@override
|
|
175
180
|
def run_squeue(self, *, job_ids: list[str]) -> str:
|
|
176
181
|
"""
|
|
177
182
|
Run `squeue` for a set of SLURM job IDs.
|
|
@@ -13,7 +13,6 @@ from typing import Protocol
|
|
|
13
13
|
|
|
14
14
|
from sqlalchemy.orm import Session as DBSyncSession
|
|
15
15
|
|
|
16
|
-
from fractal_server import __VERSION__
|
|
17
16
|
from fractal_server.app.db import DB
|
|
18
17
|
from fractal_server.app.models.v2 import DatasetV2
|
|
19
18
|
from fractal_server.app.models.v2 import JobV2
|
|
@@ -76,7 +75,6 @@ def fail_job(
|
|
|
76
75
|
job.log = log_msg
|
|
77
76
|
db.merge(job)
|
|
78
77
|
db.commit()
|
|
79
|
-
db.close()
|
|
80
78
|
return
|
|
81
79
|
|
|
82
80
|
|
|
@@ -225,7 +223,6 @@ def submit_workflow(
|
|
|
225
223
|
f'Start execution of workflow "{workflow.name}"; '
|
|
226
224
|
f"more logs at {str(log_file_path)}"
|
|
227
225
|
)
|
|
228
|
-
logger.debug(f"fractal_server.__VERSION__: {__VERSION__}")
|
|
229
226
|
logger.debug(f"Resource name: {resource.name}")
|
|
230
227
|
logger.debug(f"Profile name: {profile.name}")
|
|
231
228
|
logger.debug(f"Username: {profile.username}")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fractal-server
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.19.0
|
|
4
4
|
Summary: Backend component of the Fractal analytics platform
|
|
5
5
|
Author: Tommaso Comparin, Marco Franzon, Yuri Chiucconi, Jacopo Nespolo
|
|
6
6
|
Author-email: Tommaso Comparin <tommaso.comparin@exact-lab.it>, Marco Franzon <marco.franzon@exact-lab.it>, Yuri Chiucconi <yuri.chiucconi@exact-lab.it>, Jacopo Nespolo <jacopo.nespolo@exact-lab.it>
|
|
@@ -17,10 +17,10 @@ Requires-Dist: pydantic>=2.12.0,<2.13.0
|
|
|
17
17
|
Requires-Dist: pydantic-settings==2.12.0
|
|
18
18
|
Requires-Dist: packaging>=25.0.0,<26.0.0
|
|
19
19
|
Requires-Dist: fabric>=3.2.2,<3.3.0
|
|
20
|
-
Requires-Dist: gunicorn>=
|
|
20
|
+
Requires-Dist: gunicorn>=24.1,<25
|
|
21
21
|
Requires-Dist: psycopg[binary]>=3.1.0,<4.0.0
|
|
22
22
|
Requires-Dist: tomli-w>=1.2.0,<1.3.0
|
|
23
|
-
Requires-Python: >=3.
|
|
23
|
+
Requires-Python: >=3.12, <3.15
|
|
24
24
|
Project-URL: changelog, https://github.com/fractal-analytics-platform/fractal-server/blob/main/CHANGELOG.md
|
|
25
25
|
Project-URL: documentation, https://fractal-analytics-platform.github.io/fractal-server
|
|
26
26
|
Project-URL: homepage, https://github.com/fractal-analytics-platform/fractal-server
|
|
@@ -1,87 +1,89 @@
|
|
|
1
|
-
fractal_server/__init__.py,sha256=
|
|
1
|
+
fractal_server/__init__.py,sha256=1UbL9iwVuF5UCZ96vJT-FT78kHbhBr9fS7C7nat-FUo,23
|
|
2
2
|
fractal_server/__main__.py,sha256=QeKoAgqoiozLJDa8kSVe-Aso1WWgrk1yLUYWS8RxZVM,11405
|
|
3
3
|
fractal_server/alembic.ini,sha256=MWwi7GzjzawI9cCAK1LW7NxIBQDUqD12-ptJoq5JpP0,3153
|
|
4
4
|
fractal_server/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
-
fractal_server/app/db/__init__.py,sha256=
|
|
5
|
+
fractal_server/app/db/__init__.py,sha256=2b8wF-EBkEgFwWNoRD_ZKbfIf4eRCg74Epgwe2BA_dw,2697
|
|
6
6
|
fractal_server/app/models/__init__.py,sha256=oglUT1A1lLhXy2GFz3XsQ7wqkyfs3NXRtuNov-gOHXM,368
|
|
7
7
|
fractal_server/app/models/linkusergroup.py,sha256=3KkkE4QIUAlTrBAZs_tVy0pGvAxUAq6yOEjflct_z2M,678
|
|
8
8
|
fractal_server/app/models/linkuserproject.py,sha256=Bk0VzjzG7RbnVnOwrztqxKIPxz_AsUynXVxyMWHCbXA,1109
|
|
9
|
-
fractal_server/app/models/security.py,sha256=
|
|
9
|
+
fractal_server/app/models/security.py,sha256=2gKF2JQX2Xpb58fW-s7UgkgUneEy5SspgawawWoju3M,4970
|
|
10
10
|
fractal_server/app/models/v2/__init__.py,sha256=xL05Mvdx0dqUFhJf694oPfuqkUQxZbxOkoUgRuNIXl4,949
|
|
11
11
|
fractal_server/app/models/v2/accounting.py,sha256=VNweFARrvY3mj5LI0834Ku061S2aGC61kuVHzi_tZhc,1187
|
|
12
|
-
fractal_server/app/models/v2/dataset.py,sha256=
|
|
12
|
+
fractal_server/app/models/v2/dataset.py,sha256=5UEV75LZTYAOq5d8UqRAuIIVBh3rAer3D5qvWmGbw8s,1154
|
|
13
13
|
fractal_server/app/models/v2/history.py,sha256=869RQzBssHFYnBLBvCGlKrLV_HAXwsdO5DgwG9U8D-U,2339
|
|
14
|
-
fractal_server/app/models/v2/job.py,sha256
|
|
14
|
+
fractal_server/app/models/v2/job.py,sha256=-9PKE5Gh9UCBStYE0DZj3I8XTPDa5qd7g2eVufp-9hw,2521
|
|
15
15
|
fractal_server/app/models/v2/profile.py,sha256=YajSmV4J_-zC4RX917s-A_lJt4mxYdPRVS3RH_uvJ48,1006
|
|
16
16
|
fractal_server/app/models/v2/project.py,sha256=VvLXrgzKYLH585mYg_txrO8q3JoSoSEy4XkWjex4sDU,585
|
|
17
17
|
fractal_server/app/models/v2/resource.py,sha256=XaHlJj9CladIahkrpywWXn8JBSx7_qEHp_wnkFuQ0rU,3896
|
|
18
|
-
fractal_server/app/models/v2/task.py,sha256=
|
|
19
|
-
fractal_server/app/models/v2/task_group.py,sha256=
|
|
20
|
-
fractal_server/app/models/v2/workflow.py,sha256=
|
|
21
|
-
fractal_server/app/models/v2/workflowtask.py,sha256=
|
|
18
|
+
fractal_server/app/models/v2/task.py,sha256=v0brBHnAbcHrgDiuRHMWYahklq0fgyezZ0c9krKSA10,1463
|
|
19
|
+
fractal_server/app/models/v2/task_group.py,sha256=8UcyFMG-6J-_hkgSkrLIxFLSwVCyrWB0Fl-LCgkeo54,4756
|
|
20
|
+
fractal_server/app/models/v2/workflow.py,sha256=VKXIX3L3jP8eCdIQhVf5AhhwKGO_LTxn7uB4_sCirLs,1135
|
|
21
|
+
fractal_server/app/models/v2/workflowtask.py,sha256=jEt81PGHuXSY8MYid0t15CntIIg0Lzq39uvG4X4Mx6s,1391
|
|
22
22
|
fractal_server/app/routes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
23
|
fractal_server/app/routes/admin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
24
|
fractal_server/app/routes/admin/v2/__init__.py,sha256=VF4wg09fvz6gVgIFe-r7LoCU9tlF9kBcEhkQRQPhatY,1134
|
|
25
25
|
fractal_server/app/routes/admin/v2/_aux_functions.py,sha256=fqA5sUCFuD2iVANQt2WUUfVOEVz5egQA7inzUKYGCw0,1684
|
|
26
26
|
fractal_server/app/routes/admin/v2/accounting.py,sha256=xNXyQYpa0K0bOjd5WNVKfU6zBhvT2-Xgrx2F4vdS9C0,3512
|
|
27
27
|
fractal_server/app/routes/admin/v2/impersonate.py,sha256=ictDjuvBr3iLv3YtwkVRMNQRq5qtPAeAXbbC7STSsEg,1125
|
|
28
|
-
fractal_server/app/routes/admin/v2/job.py,sha256=
|
|
28
|
+
fractal_server/app/routes/admin/v2/job.py,sha256=VaVMUrHV7edHyjp2rsqoWf-wh5zlXFM-VjXIlxBnwG0,10795
|
|
29
29
|
fractal_server/app/routes/admin/v2/profile.py,sha256=DwLlA9K3hkl9BqzyifIDiaWeHOM_N_17kqB5CSJOhSI,3165
|
|
30
30
|
fractal_server/app/routes/admin/v2/resource.py,sha256=c2z6b_D_W6_dqVnxNF8F8OdlI5Z4asex8Zgfwzjbi2Q,6330
|
|
31
|
-
fractal_server/app/routes/admin/v2/sharing.py,sha256=
|
|
32
|
-
fractal_server/app/routes/admin/v2/task.py,sha256=
|
|
31
|
+
fractal_server/app/routes/admin/v2/sharing.py,sha256=I2BoyO0rZNWxFKyq3Em9sjz_0n3kfRynC-WmUZxSzzU,5455
|
|
32
|
+
fractal_server/app/routes/admin/v2/task.py,sha256=9OglWWYjGbA1k2wdE8k8vr2ynLn6zqdp_BxwPGfjj9A,5873
|
|
33
33
|
fractal_server/app/routes/admin/v2/task_group.py,sha256=3LxH2LEstj7L9qGNN3kkLo4JdFw4GXDlnlM6s4ulc_0,9377
|
|
34
|
-
fractal_server/app/routes/admin/v2/task_group_lifecycle.py,sha256=
|
|
35
|
-
fractal_server/app/routes/api/__init__.py,sha256=
|
|
36
|
-
fractal_server/app/routes/api/
|
|
34
|
+
fractal_server/app/routes/admin/v2/task_group_lifecycle.py,sha256=mC7zKuoyDZSOOuOiXiQeGfFv78JYHFBQ9RNtNAdAQfQ,10202
|
|
35
|
+
fractal_server/app/routes/api/__init__.py,sha256=ZQtqy-HGJZsehAL8UjnTvRhWd9MI9Noi2NvwD5hE_xA,231
|
|
36
|
+
fractal_server/app/routes/api/alive.py,sha256=hE42dfh1naix9EKvpyKCoLMA6WqThObgA3jIro2rx-M,206
|
|
37
|
+
fractal_server/app/routes/api/settings.py,sha256=9wV4To1FjW3jCcRtFp-QGGu3235s1oUg4HwKQIw-TWc,1210
|
|
38
|
+
fractal_server/app/routes/api/v2/__init__.py,sha256=_pNH8odiUYpv2Okiqbqe0VNjbvK2jWqIoaImlgYzI84,2580
|
|
37
39
|
fractal_server/app/routes/api/v2/_aux_functions.py,sha256=pxXcauCMZEVKkft8nOCK_Nq5m7hkx7BVUXch_j2KVtg,15131
|
|
38
40
|
fractal_server/app/routes/api/v2/_aux_functions_history.py,sha256=vB8AwSBf3Dp1sxpTAYtWj4s9kgAp_D5Hd1BX6Z8JTxc,6057
|
|
39
41
|
fractal_server/app/routes/api/v2/_aux_functions_sharing.py,sha256=IvDII3Sl00eypdD3QRELQ4SLyC3gq6-HsXhuCx5Bp5I,2995
|
|
40
|
-
fractal_server/app/routes/api/v2/_aux_functions_task_lifecycle.py,sha256=
|
|
42
|
+
fractal_server/app/routes/api/v2/_aux_functions_task_lifecycle.py,sha256=EffjYdQCHoUc5i59c7KmyH8hoLYxQsPh4RPo8qY8CYA,7796
|
|
41
43
|
fractal_server/app/routes/api/v2/_aux_functions_task_version_update.py,sha256=PKjV7r8YsPRXoNiVSnOK4KBYVV3l_Yb_ZPrqAkMkXrQ,1182
|
|
42
44
|
fractal_server/app/routes/api/v2/_aux_functions_tasks.py,sha256=Hrumknv0vH5VX7SFp8WZDzsJv_z7quvFyNoDYmYoD7A,13623
|
|
43
45
|
fractal_server/app/routes/api/v2/_aux_task_group_disambiguation.py,sha256=vdvMTa3San1HMTzctN5Vk7zxpqe4ccByrFBQyHfgWW8,4889
|
|
44
|
-
fractal_server/app/routes/api/v2/dataset.py,sha256=
|
|
45
|
-
fractal_server/app/routes/api/v2/history.py,sha256
|
|
46
|
-
fractal_server/app/routes/api/v2/images.py,sha256=
|
|
47
|
-
fractal_server/app/routes/api/v2/job.py,sha256=
|
|
48
|
-
fractal_server/app/routes/api/v2/pre_submission_checks.py,sha256=
|
|
49
|
-
fractal_server/app/routes/api/v2/project.py,sha256=
|
|
50
|
-
fractal_server/app/routes/api/v2/sharing.py,sha256=
|
|
51
|
-
fractal_server/app/routes/api/v2/
|
|
52
|
-
fractal_server/app/routes/api/v2/
|
|
53
|
-
fractal_server/app/routes/api/v2/
|
|
54
|
-
fractal_server/app/routes/api/v2/
|
|
55
|
-
fractal_server/app/routes/api/v2/
|
|
56
|
-
fractal_server/app/routes/api/v2/
|
|
57
|
-
fractal_server/app/routes/api/v2/
|
|
58
|
-
fractal_server/app/routes/api/v2/
|
|
59
|
-
fractal_server/app/routes/api/v2/
|
|
60
|
-
fractal_server/app/routes/api/v2/
|
|
61
|
-
fractal_server/app/routes/api/v2/
|
|
62
|
-
fractal_server/app/routes/
|
|
63
|
-
fractal_server/app/routes/auth/__init__.py,sha256=RghfjGuu0RTW8RxBCvaePx9KErO4rTkI96XgbtbeSJU,2337
|
|
46
|
+
fractal_server/app/routes/api/v2/dataset.py,sha256=O2wzEpQSSmC4SAzP3t9YQFL8eKt_zkbdKddhSp2SWbs,8471
|
|
47
|
+
fractal_server/app/routes/api/v2/history.py,sha256=wKiNhYCA8Ioemvr721nZVY4n9PMwIVnG48cgiQ0Fmhw,18243
|
|
48
|
+
fractal_server/app/routes/api/v2/images.py,sha256=N32PCbwY0-CWLMMN8GMwcc8QKZwhQsDowZqLJll_s9s,8238
|
|
49
|
+
fractal_server/app/routes/api/v2/job.py,sha256=gulXJyP0Kc2_dNkPHPpc_XZlWoBEA1lrrBt3h8rP_6E,7332
|
|
50
|
+
fractal_server/app/routes/api/v2/pre_submission_checks.py,sha256=wqZ44rCJ8f2WcpyFOQ0FZN3g-66EzDnuYCrJJXawSdY,5179
|
|
51
|
+
fractal_server/app/routes/api/v2/project.py,sha256=dirGShqcuEnK1sVh-Bl6kemj_z6A32s8ARNqSLIFhM8,5729
|
|
52
|
+
fractal_server/app/routes/api/v2/sharing.py,sha256=W8Zf_rmTJwbFYz3XCrL9IFN6KXph5c97YS6Ok8oHTHM,9658
|
|
53
|
+
fractal_server/app/routes/api/v2/submit.py,sha256=fhWLAsD-XgEunUfZpoSDsTpuYl3wReKAPg811iAmFRU,9642
|
|
54
|
+
fractal_server/app/routes/api/v2/task.py,sha256=xKeGon7aRBOu1gnYd9EnWW1V-pnIqSVpXkN3dnubH3A,7418
|
|
55
|
+
fractal_server/app/routes/api/v2/task_collection.py,sha256=VkxPwkKxQxvKJJL8ShkGVT4YolX5KjP8yLBaNS7WkP8,12405
|
|
56
|
+
fractal_server/app/routes/api/v2/task_collection_custom.py,sha256=yZ0c3hWkq3nR5CKYP63yU6D1--xWjS2aimqoYWrQT5I,6894
|
|
57
|
+
fractal_server/app/routes/api/v2/task_collection_pixi.py,sha256=IT-vhTFPUpMA2kY4z8i5us03vQCTquEvjjH7k7bgYVg,7229
|
|
58
|
+
fractal_server/app/routes/api/v2/task_group.py,sha256=Jemgrc_1qA6b8at48BePMLJennterLIpJwoa077jMmc,7632
|
|
59
|
+
fractal_server/app/routes/api/v2/task_group_lifecycle.py,sha256=0iv4MOCesCngujiMUU9i3EdPADnoGIilXrR2Rc1yY04,10738
|
|
60
|
+
fractal_server/app/routes/api/v2/task_version_update.py,sha256=dFzUetvIkd0RXw-cgOGGQGu8843y62AG30RbCQL15Tc,8506
|
|
61
|
+
fractal_server/app/routes/api/v2/workflow.py,sha256=lHssUNN3ekqvXp4wWX8a33-5m2ZwLuLPkoL3keCsFhA,10741
|
|
62
|
+
fractal_server/app/routes/api/v2/workflow_import.py,sha256=UND3U9zE-2o_85BW0uWNsm3_9125PgDtnUlki13jDT4,8740
|
|
63
|
+
fractal_server/app/routes/api/v2/workflowtask.py,sha256=vn3pvaCIC9ydJYwboDAFT61IWRIJ6uYe5p3u4W9iloQ,7962
|
|
64
|
+
fractal_server/app/routes/auth/__init__.py,sha256=JL4MUBjPiNsNJLlb0lbn6_LbIzdRLosquQNqpn6niFw,2836
|
|
64
65
|
fractal_server/app/routes/auth/_aux_auth.py,sha256=gKdYTWUzxcU44Iep787zReWwdAs4kW5baNDXCPmiKn8,9195
|
|
65
|
-
fractal_server/app/routes/auth/current_user.py,sha256=
|
|
66
|
+
fractal_server/app/routes/auth/current_user.py,sha256=gOLk-jUnkXTrBj8aN_yRlUcvCoJMHxxoWz13M8DBCbg,3502
|
|
66
67
|
fractal_server/app/routes/auth/group.py,sha256=uR98vdQHH-7BFl-Czj85ESPxT2yQymy4qtagaMrnUPU,6491
|
|
67
68
|
fractal_server/app/routes/auth/login.py,sha256=buVa5Y8T0cd_SW1CqC-zMv-3SfPxGJknf7MYlUyKOl0,567
|
|
68
|
-
fractal_server/app/routes/auth/oauth.py,sha256=
|
|
69
|
+
fractal_server/app/routes/auth/oauth.py,sha256=dOt1bWz1viW36CAnHVLmLkYzdCHUMdOhdTNgoQp-VvU,3663
|
|
69
70
|
fractal_server/app/routes/auth/register.py,sha256=IiUJhgY0ZrTs0RlBRRjoTv4wF5Gb3eXTInFV-dXkpsE,615
|
|
70
71
|
fractal_server/app/routes/auth/router.py,sha256=Zip_fw9qJWtoXWjluznschyrCKb2n_rf3xWarSXMkgI,692
|
|
71
|
-
fractal_server/app/routes/auth/users.py,sha256=
|
|
72
|
+
fractal_server/app/routes/auth/users.py,sha256=tt9rsnVOXTVnHSWtIbY8f6RtnBl2UFwmH1yg9tE_lL4,7753
|
|
72
73
|
fractal_server/app/routes/auth/viewer_paths.py,sha256=uDIwP3AWjLOskG2ZSMUokmn6DWJX2NSviG6k4hiJRSU,1911
|
|
73
74
|
fractal_server/app/routes/aux/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
75
|
fractal_server/app/routes/aux/_job.py,sha256=n-UhONvomKyKkQDDqd0lFh2kCMhlCGXpfdMNW39R1E4,644
|
|
75
76
|
fractal_server/app/routes/aux/_runner.py,sha256=-SvcXCVEV7Mb6q4PbbxuTCCruX6sAlR5QGXk9CzBVv8,979
|
|
77
|
+
fractal_server/app/routes/aux/_versions.py,sha256=6ZnH5KcLlJXACfZsFXhgARQcp2AwekIaaTVz68H6HWs,1527
|
|
76
78
|
fractal_server/app/routes/aux/validate_user_profile.py,sha256=fGqJDdAFkbQoEIjqZ5F9-SDY_4os63R2EUMqODC7eBg,1969
|
|
77
79
|
fractal_server/app/routes/pagination.py,sha256=C4XW6cnyDfyu1XMHXRN4wgk72lsS0UtlINZmwGZFb4Y,1174
|
|
78
80
|
fractal_server/app/schemas/__init__.py,sha256=VIWJCaqokte3OljDLX00o-EC2d12rFoPb5HOLKQI94Y,86
|
|
79
|
-
fractal_server/app/schemas/user.py,sha256=
|
|
81
|
+
fractal_server/app/schemas/user.py,sha256=ncPPxl6DsF_YDsEKJ1idTpAZTsVyh1iC9p4KfK25WZ4,3421
|
|
80
82
|
fractal_server/app/schemas/user_group.py,sha256=irel29GbffKCXNcyrAYbNSN3pCgmoUQ1wG32_s6jvos,1082
|
|
81
|
-
fractal_server/app/schemas/v2/__init__.py,sha256=
|
|
83
|
+
fractal_server/app/schemas/v2/__init__.py,sha256=cYyOsr-6jttq1jzRNa_tOuCXPp3zwV3jBDR72F4u4vU,3957
|
|
82
84
|
fractal_server/app/schemas/v2/accounting.py,sha256=6EVUdPTkFY6Wb9-Vc0cIEZYVXwGEvJ3tP4YOXYE1hao,546
|
|
83
85
|
fractal_server/app/schemas/v2/dataset.py,sha256=SBS3TwHxPRHtLvFu-Bm4eQlI96DIkCiFF7oKvfcfTOc,2736
|
|
84
|
-
fractal_server/app/schemas/v2/dumps.py,sha256=
|
|
86
|
+
fractal_server/app/schemas/v2/dumps.py,sha256=x3LK-Xq1OQgp7waAjy-5gaQVNbcF5JQNTqqPw86xkpM,2246
|
|
85
87
|
fractal_server/app/schemas/v2/history.py,sha256=pZiMKfh6nMWbTp5MUtrnGySPKbeRFf5tM1VLFaTgGcw,1784
|
|
86
88
|
fractal_server/app/schemas/v2/job.py,sha256=YnnxnrbI_l7EgZNzk_KgnuEuh0COg-RPoph2foHUvZo,3308
|
|
87
89
|
fractal_server/app/schemas/v2/manifest.py,sha256=I8KyVZvW6r6_DrcKX5aZ9zJwa-Kk_u3gCKlz6HVPF5o,6655
|
|
@@ -90,12 +92,12 @@ fractal_server/app/schemas/v2/project.py,sha256=jTc4jhwdkO1Ht2K27AguA0z9wWX0CYKv
|
|
|
90
92
|
fractal_server/app/schemas/v2/resource.py,sha256=LPi1D67vGngOn5BWNicqAIHCKExaf2XyzuZKByo7wfc,6841
|
|
91
93
|
fractal_server/app/schemas/v2/sharing.py,sha256=wHBiEmqhU53NokQ2rmm6xkH3lumBR6TdWw4nvDz6uww,1818
|
|
92
94
|
fractal_server/app/schemas/v2/status_legacy.py,sha256=ajLm2p0wNfJ_lQX9Oq3NJn0jxQj50U3eZxuRjOIdOpg,949
|
|
93
|
-
fractal_server/app/schemas/v2/task.py,sha256=
|
|
95
|
+
fractal_server/app/schemas/v2/task.py,sha256=le62bHu4nRrXlN-cCOdpkStLQNLtkR_myqK1j8fLoNs,4260
|
|
94
96
|
fractal_server/app/schemas/v2/task_collection.py,sha256=ljGnZOmYg9pQ9PbYnNxLJDf4O2BDym-BQ_cXr-NWSd4,4590
|
|
95
97
|
fractal_server/app/schemas/v2/task_group.py,sha256=sbg6AkvonU7F_-QC4G9kDxO6YVcz7wUPY3k3n9jYkRY,3392
|
|
96
|
-
fractal_server/app/schemas/v2/workflow.py,sha256=
|
|
97
|
-
fractal_server/app/schemas/v2/workflowtask.py,sha256=
|
|
98
|
-
fractal_server/app/security/__init__.py,sha256=
|
|
98
|
+
fractal_server/app/schemas/v2/workflow.py,sha256=m-udZHvOFokjaD3cGdTMHdtC8qHLNlmx7PsCEgcvN7U,1801
|
|
99
|
+
fractal_server/app/schemas/v2/workflowtask.py,sha256=sAzu6ZHWGgwvQgviIZJB3J6X79TxchlClkqzNHMlxTo,3683
|
|
100
|
+
fractal_server/app/security/__init__.py,sha256=Z-xQjt5jx6ldBBrz1iJ0IQ-SLKbv8Gq7fQ4U18NAxXc,18471
|
|
99
101
|
fractal_server/app/security/signup_email.py,sha256=R69U5eTi9X7gZHSTfZ26SaHMQAeqReYEpGnB8r3AVig,1992
|
|
100
102
|
fractal_server/app/shutdown.py,sha256=bfEmf6Xdc906ES0zDDWsihmd6neQpGFyIc7qnadnNu8,2283
|
|
101
103
|
fractal_server/config/__init__.py,sha256=WvcoE3qiY1qnkumv3qspcemCFw5iFG5NkSFR78vN4ks,562
|
|
@@ -120,8 +122,10 @@ fractal_server/migrations/versions/034a469ec2eb_task_groups.py,sha256=uuf0sJibC4
|
|
|
120
122
|
fractal_server/migrations/versions/068496367952_drop_taskgroup_venv_size_and_files_.py,sha256=rVFmB7eO7LtOfJivNnfnniQecD8DebAWnSvYEE2yq7k,1239
|
|
121
123
|
fractal_server/migrations/versions/091b01f51f88_add_usergroup_and_linkusergroup_table.py,sha256=cSz3Jc2X79dN7I-rh0OSefOd5WOJU65wNWFNMnX2LR4,1450
|
|
122
124
|
fractal_server/migrations/versions/0f5f85bb2ae7_add_pre_pinned_packages.py,sha256=XH6msE3On7P7S2gz-Xec20bWAI6vR29zRT1ZafFwStI,1056
|
|
125
|
+
fractal_server/migrations/versions/18a26fcdea5d_drop_dataset_history.py,sha256=AzCnz-PJCzKw8Sm28zN1cIrHexgv-5Bcw5dGIxkzDOU,1064
|
|
123
126
|
fractal_server/migrations/versions/19eca0dd47a9_user_settings_project_dir.py,sha256=5OzcIQjTfwiqh9vK_yLQHJlNtIHxKiEPr-IjZ9iir-Y,961
|
|
124
127
|
fractal_server/migrations/versions/1a83a5260664_rename.py,sha256=BGZrM2UfccWc0s0kNlpACEw1LB1K6AemHPR5irkJ1gA,790
|
|
128
|
+
fractal_server/migrations/versions/1bf8785755f9_add_description_to_workflow_and_.py,sha256=OVugy2ftELqAE8_6zTGiwwpDxj1STmf8XNHOa8TBr6o,1507
|
|
125
129
|
fractal_server/migrations/versions/1eac13a26c83_drop_v1_tables.py,sha256=DGdm1Q58UHfQ-6GAg0ucyKCiMxXb1JzELYQ50d1f5bo,1605
|
|
126
130
|
fractal_server/migrations/versions/316140ff7ee1_remove_usersettings_cache_dir.py,sha256=5gIIZp3Apc2fTiUoHEvd-k34W-HIq7cjFt7Fwqjq6lE,911
|
|
127
131
|
fractal_server/migrations/versions/40d6d6511b20_add_index_to_history_models.py,sha256=dZglAP0b3_YAeYc7Pphxs9iI73icSaMkgku7R6MaPL0,1357
|
|
@@ -133,6 +137,7 @@ fractal_server/migrations/versions/4cedeb448a53_workflowtask_foreign_keys_not_nu
|
|
|
133
137
|
fractal_server/migrations/versions/501961cfcd85_remove_link_between_v1_and_v2_tasks_.py,sha256=SeBUvMEikyl4qkCjiOgkkqbcIeaim57EPuufjFh_X8k,3271
|
|
134
138
|
fractal_server/migrations/versions/50a13d6138fd_initial_schema.py,sha256=sh0tB5K35ui8bfvBPI2jwDkeNVDtdlGvWrvTeumA0iY,8654
|
|
135
139
|
fractal_server/migrations/versions/5bf02391cfef_v2.py,sha256=jTNyZ8H5VDh4eRvCEy-WliXAu55kUybddsaTeexXr6c,8367
|
|
140
|
+
fractal_server/migrations/versions/5fb08bf05b14_drop_taskv2_source.py,sha256=bUs6xhVFGeCU4rR7yRdQXEXsns28lFUKBdcDsd-Bj4Q,880
|
|
136
141
|
fractal_server/migrations/versions/70e77f1c38b0_add_applyworkflow_first_task_index_and_.py,sha256=vJ6nDb7UnkCMIPg2zNM7ZE0JOTvaqFL3Fe9UarP-ivM,1633
|
|
137
142
|
fractal_server/migrations/versions/71eefd1dd202_add_slurm_accounts.py,sha256=qpHZC97AduFk5_G0xHs9akhnhpzb1LZooYCTPHy7n28,1353
|
|
138
143
|
fractal_server/migrations/versions/7673fe18c05d_remove_project_dir_server_default.py,sha256=PwTfY9Kq3_cwb5G4E0sM9u7UjzOhOwsYCspymmPgipQ,795
|
|
@@ -160,11 +165,13 @@ fractal_server/migrations/versions/b7477cc98f45_2_18_1.py,sha256=clKGCwh95sWFTeU
|
|
|
160
165
|
fractal_server/migrations/versions/bc0e8b3327a7_project_sharing.py,sha256=5h8ogjfQPbKbVwN0-pfh5ixPQSCCYsiVnQoOveUKKUA,2145
|
|
161
166
|
fractal_server/migrations/versions/c90a7c76e996_job_id_in_history_run.py,sha256=CPQNKHqsx22wSY4ylqM8UMhDOWkQeC9eLAHlQQJYSfQ,1102
|
|
162
167
|
fractal_server/migrations/versions/caba9fb1ea5e_drop_useroauth_user_settings_id.py,sha256=7MpunfOBk0LM6u-xrwca8GUHIjinAJZrS9AUT3l62qU,1320
|
|
168
|
+
fractal_server/migrations/versions/cfd13f7954e7_add_fractal_server_version_to_jobv2_and_.py,sha256=rqF1f3j5exatdKyeEvccX-TMC_bcZEFcHmixguOQRqw,1447
|
|
163
169
|
fractal_server/migrations/versions/d256a7379ab8_taskgroup_activity_and_venv_info_to_.py,sha256=bFMJUFJAnOaHYyYYKISHpbQWKBoQopiEKRT0PSidqhk,3796
|
|
164
170
|
fractal_server/migrations/versions/d4fe3708d309_make_applyworkflow_workflow_dump_non_.py,sha256=zLHqar9iduiLs5Ib50B9RKrdLLbWSffahWxXDDePnI8,950
|
|
165
171
|
fractal_server/migrations/versions/da2cb2ac4255_user_group_viewer_paths.py,sha256=-ihE-KJEVemb8ZhRejg6xdC5TPTW8GkKWnzcl1ReAHQ,901
|
|
166
172
|
fractal_server/migrations/versions/db09233ad13a_split_filters_and_keep_old_columns.py,sha256=mOaFWcay-rznXcM9cdmGqA9EgM9Qn0dOjUOOs8RHKiQ,2907
|
|
167
173
|
fractal_server/migrations/versions/e0e717ae2f26_delete_linkuserproject_ondelete_project.py,sha256=wmxB9EOIUHpFiCVhQIsCBnC2deMUbrsZTOgQSUAgSAo,1409
|
|
174
|
+
fractal_server/migrations/versions/e53dc51fdf93_add_useroauth_is_guest.py,sha256=fxc6JrgRmGZQxyiQI4LPXqHuTVqPfCtAOtMNbjY6JBE,900
|
|
168
175
|
fractal_server/migrations/versions/e75cac726012_make_applyworkflow_start_timestamp_not_.py,sha256=x6eCYsx_Cb7yDC5K_gV2RNHeCF_K-964NtZF1mmxUb0,964
|
|
169
176
|
fractal_server/migrations/versions/e81103413827_add_job_type_filters.py,sha256=w0HYX1645_JXsfUB259OrmXLUasOgRnpKvJJaF44GpQ,890
|
|
170
177
|
fractal_server/migrations/versions/efa89c30e0a4_add_project_timestamp_created.py,sha256=3ppXZxLsljAlN5Def9lHuEZlf_7hMXaIIeTV2N5zUXY,1222
|
|
@@ -185,7 +192,7 @@ fractal_server/runner/executors/base_runner.py,sha256=h8uE5gr6zFEwpjhasJDc-eNTMI
|
|
|
185
192
|
fractal_server/runner/executors/call_command_wrapper.py,sha256=yLFfwkYdfGAp6TSLx0omymW3IxaDNdxV-DDk-3oqNx0,1828
|
|
186
193
|
fractal_server/runner/executors/local/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
187
194
|
fractal_server/runner/executors/local/get_local_config.py,sha256=oI32JawlG3ixYdjxJDRfT0sreEnoHekhiAHzlejl2aM,1694
|
|
188
|
-
fractal_server/runner/executors/local/runner.py,sha256=
|
|
195
|
+
fractal_server/runner/executors/local/runner.py,sha256=aad4Q0mLFh5Sb0Naqj0zgpNHd5som_-T85qLcMlPrcs,12339
|
|
189
196
|
fractal_server/runner/executors/slurm_common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
190
197
|
fractal_server/runner/executors/slurm_common/_batching.py,sha256=YQjWRTDI1e6NeLe1R-1QWlt49i42M9ILeExEjdjgy48,8348
|
|
191
198
|
fractal_server/runner/executors/slurm_common/_job_states.py,sha256=nuV-Zba38kDrRESOVB3gaGbrSPZc4q7YGichQaeqTW0,238
|
|
@@ -196,11 +203,11 @@ fractal_server/runner/executors/slurm_common/slurm_config.py,sha256=m65hJ4NJfk74
|
|
|
196
203
|
fractal_server/runner/executors/slurm_common/slurm_job_task_models.py,sha256=VeX40CvU5fckUpSyXlzb3EDE9xxPXkT2sZKLXq_6Ooc,3493
|
|
197
204
|
fractal_server/runner/executors/slurm_ssh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
198
205
|
fractal_server/runner/executors/slurm_ssh/run_subprocess.py,sha256=SyW6t4egvbiARph2YkFjc88Hj94fCamZVi50L7ph8VM,996
|
|
199
|
-
fractal_server/runner/executors/slurm_ssh/runner.py,sha256=
|
|
206
|
+
fractal_server/runner/executors/slurm_ssh/runner.py,sha256=6_5alEk5bEtFMuJfGSSkJ6RlUs3bsPXl0IlQTDXfsts,10407
|
|
200
207
|
fractal_server/runner/executors/slurm_ssh/tar_commands.py,sha256=83etlsQ_dYvGVrKqlgyOYXnRFWSwf4VRISANsYMVxkQ,1763
|
|
201
208
|
fractal_server/runner/executors/slurm_sudo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
202
209
|
fractal_server/runner/executors/slurm_sudo/_subprocess_run_as_user.py,sha256=OaC_aOupXnU873FvBt8xfBrz41yVyTxh3fU9_vxq0dY,2567
|
|
203
|
-
fractal_server/runner/executors/slurm_sudo/runner.py,sha256=
|
|
210
|
+
fractal_server/runner/executors/slurm_sudo/runner.py,sha256=AKPQGDJrVWT_JtVQK6DDrtyGrTWUEkzn86PbfCbxiPI,6121
|
|
204
211
|
fractal_server/runner/filenames.py,sha256=lPnxKHtdRizr6FqG3zOdjDPyWA7GoaJGTtiuJV0gA8E,70
|
|
205
212
|
fractal_server/runner/set_start_and_last_task_index.py,sha256=NsioSzfEpGyo9ZKrV5KsbxeI7d5V3tE678Y3IAo5rHM,1218
|
|
206
213
|
fractal_server/runner/task_files.py,sha256=n54A1x0MQRGSgqhzOTE-TPzEGJymUhQIUV9ApcVCV9M,4318
|
|
@@ -211,9 +218,9 @@ fractal_server/runner/v2/_slurm_sudo.py,sha256=UsB1P6AZB0L1QrBvR2Lq9FoJaxnhbakLA
|
|
|
211
218
|
fractal_server/runner/v2/db_tools.py,sha256=twqFWVENkxWCYglb__BAXASDuJppwHE-VxdEUC67mq0,3317
|
|
212
219
|
fractal_server/runner/v2/deduplicate_list.py,sha256=TWxHDucal0VZPswy_H7IFaEb4ddGnpl_QBwJ8g9Ybug,668
|
|
213
220
|
fractal_server/runner/v2/merge_outputs.py,sha256=0ahaSwdMFAoEhxVaEaO9nSJuKIcWg9pDZ356ktSHcC0,897
|
|
214
|
-
fractal_server/runner/v2/runner.py,sha256=
|
|
221
|
+
fractal_server/runner/v2/runner.py,sha256=aKz5ocgsMcUUsvaz00db8cWbBHMBA_g_PJhwV973pdY,20884
|
|
215
222
|
fractal_server/runner/v2/runner_functions.py,sha256=1wW2ByskwPtx_mhyJiCpKMXDnDyZ_y5fDWv8hktFZXI,19564
|
|
216
|
-
fractal_server/runner/v2/submit_workflow.py,sha256=
|
|
223
|
+
fractal_server/runner/v2/submit_workflow.py,sha256=MNUyBlXKfPjSbJgB5HlpAhXPvDeuMtPXc2h6HHmJkU0,11761
|
|
217
224
|
fractal_server/runner/v2/task_interface.py,sha256=ftPPpOU16rbJD8q-QV7o_3ey8W7MQTFuWJiYUr4OmF4,2532
|
|
218
225
|
fractal_server/runner/versions.py,sha256=uz59Dxj7BphnFnr-p0kyaZRH0h4w5Xkd0UJNVGtt4ds,474
|
|
219
226
|
fractal_server/ssh/__init__.py,sha256=sVUmzxf7_DuXG1xoLQ1_00fo5NPhi2LJipSmU5EAkPs,124
|
|
@@ -267,8 +274,8 @@ fractal_server/types/validators/_workflow_task_arguments_validators.py,sha256=zt
|
|
|
267
274
|
fractal_server/urls.py,sha256=QjIKAC1a46bCdiPMu3AlpgFbcv6a4l3ABcd5xz190Og,471
|
|
268
275
|
fractal_server/utils.py,sha256=-rjg8QTXQcKweXjn0NcmETFs1_uM9PGnbl0Q7c4ERPM,2181
|
|
269
276
|
fractal_server/zip_tools.py,sha256=Uhn-ax4_9g1PJ32BdyaX30hFpAeVOv2tZYTUK-zVn1E,5719
|
|
270
|
-
fractal_server-2.
|
|
271
|
-
fractal_server-2.
|
|
272
|
-
fractal_server-2.
|
|
273
|
-
fractal_server-2.
|
|
274
|
-
fractal_server-2.
|
|
277
|
+
fractal_server-2.19.0.dist-info/licenses/LICENSE,sha256=QKAharUuhxL58kSoLizKJeZE3mTCBnX6ucmz8W0lxlk,1576
|
|
278
|
+
fractal_server-2.19.0.dist-info/WHEEL,sha256=eycQt0QpYmJMLKpE3X9iDk8R04v2ZF0x82ogq-zP6bQ,79
|
|
279
|
+
fractal_server-2.19.0.dist-info/entry_points.txt,sha256=3TpdcjmETRYWJxFyAh3z-9955EWua9jdkSnBwxES1uE,60
|
|
280
|
+
fractal_server-2.19.0.dist-info/METADATA,sha256=IxX_tJLqbH-qtYWusf2Q846BSHL9pIm6Pr7EcFTFuY0,4181
|
|
281
|
+
fractal_server-2.19.0.dist-info/RECORD,,
|