fractal-server 2.11.0a6__tar.gz → 2.11.0a8__tar.gz
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-2.11.0a6 → fractal_server-2.11.0a8}/PKG-INFO +1 -1
- fractal_server-2.11.0a8/fractal_server/__init__.py +1 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/data_migrations/2_11_0.py +61 -8
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/pyproject.toml +2 -2
- fractal_server-2.11.0a6/fractal_server/__init__.py +0 -1
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/LICENSE +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/README.md +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/__main__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/alembic.ini +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/db/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/linkusergroup.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/linkuserproject.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/security.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/user_settings.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/v1/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/v1/dataset.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/v1/job.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/v1/project.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/v1/state.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/v1/task.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/v1/workflow.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/v2/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/v2/dataset.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/v2/job.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/v2/project.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/v2/task.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/v2/task_group.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/v2/workflow.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/v2/workflowtask.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/admin/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/admin/v1.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/admin/v2/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/admin/v2/job.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/admin/v2/project.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/admin/v2/task.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/admin/v2/task_group.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/admin/v2/task_group_lifecycle.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v1/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v1/_aux_functions.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v1/dataset.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v1/job.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v1/project.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v1/task.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v1/task_collection.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v1/workflow.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v1/workflowtask.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/_aux_functions.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/_aux_functions_task_lifecycle.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/_aux_functions_tasks.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/dataset.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/images.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/job.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/project.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/status.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/submit.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/task.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/task_collection.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/task_collection_custom.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/task_group.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/task_group_lifecycle.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/workflow.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/workflow_import.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/workflowtask.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/auth/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/auth/_aux_auth.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/auth/current_user.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/auth/group.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/auth/login.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/auth/oauth.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/auth/register.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/auth/router.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/auth/users.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/aux/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/aux/_job.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/aux/_runner.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/aux/validate_user_settings.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/async_wrap.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/components.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/compress_folder.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/exceptions.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/executors/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/executors/slurm/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/executors/slurm/_batching.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/executors/slurm/_slurm_config.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/executors/slurm/remote.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/executors/slurm/ssh/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/executors/slurm/ssh/_executor_wait_thread.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/executors/slurm/ssh/_slurm_job.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/executors/slurm/ssh/executor.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/executors/slurm/sudo/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/executors/slurm/sudo/_check_jobs_status.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/executors/slurm/sudo/_executor_wait_thread.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/executors/slurm/sudo/_subprocess_run_as_user.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/executors/slurm/sudo/executor.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/executors/slurm/utils_executors.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/extract_archive.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/filenames.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/run_subprocess.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/set_start_and_last_task_index.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/shutdown.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/task_files.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v1/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v1/_common.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v1/_local/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v1/_local/_local_config.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v1/_local/_submit_setup.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v1/_local/executor.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v1/_slurm/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v1/_slurm/_submit_setup.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v1/_slurm/get_slurm_config.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v1/common.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v1/handle_failed_job.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/_local/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/_local/_local_config.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/_local/_submit_setup.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/_local/executor.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/_local_experimental/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/_local_experimental/_local_config.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/_local_experimental/_submit_setup.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/_local_experimental/executor.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/_slurm_common/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/_slurm_common/get_slurm_config.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/_slurm_ssh/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/_slurm_ssh/_submit_setup.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/_slurm_sudo/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/_slurm_sudo/_submit_setup.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/deduplicate_list.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/handle_failed_job.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/merge_outputs.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/runner.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/runner_functions.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/runner_functions_low_level.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/task_interface.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/versions.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/_filter_validators.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/_validators.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/user.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/user_group.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/user_settings.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v1/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v1/applyworkflow.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v1/dataset.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v1/dumps.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v1/manifest.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v1/project.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v1/state.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v1/task.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v1/task_collection.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v1/workflow.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v2/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v2/dataset.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v2/dumps.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v2/job.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v2/manifest.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v2/project.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v2/status.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v2/task.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v2/task_collection.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v2/task_group.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v2/workflow.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v2/workflowtask.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/security/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/security/signup_email.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/user_settings.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/config.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/data_migrations/README.md +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/data_migrations/tools.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/gunicorn_fractal.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/images/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/images/models.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/images/tools.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/logger.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/main.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/env.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/naming_convention.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/034a469ec2eb_task_groups.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/091b01f51f88_add_usergroup_and_linkusergroup_table.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/19eca0dd47a9_user_settings_project_dir.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/316140ff7ee1_remove_usersettings_cache_dir.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/4c308bcaea2b_add_task_args_schema_and_task_args_.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/4cedeb448a53_workflowtask_foreign_keys_not_nullables.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/501961cfcd85_remove_link_between_v1_and_v2_tasks_.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/50a13d6138fd_initial_schema.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/5bf02391cfef_v2.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/70e77f1c38b0_add_applyworkflow_first_task_index_and_.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/71eefd1dd202_add_slurm_accounts.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/84bf0fffde30_add_dumps_to_applyworkflow.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/8e8f227a3e36_update_taskv2_post_2_7_0.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/8f79bd162e35_add_docs_info_and_docs_link_to_task_.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/94a47ea2d3ff_remove_cache_dir_slurm_user_and_slurm_.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/97f444d47249_add_applyworkflow_project_dump.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/99ea79d9e5d2_add_dataset_history.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/9c5ae74c9b98_add_user_settings_table.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/9fd26a2b0de4_add_workflow_timestamp_created.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/a7f4d6137b53_add_workflow_dump_to_applyworkflow.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/d256a7379ab8_taskgroup_activity_and_venv_info_to_.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/d4fe3708d309_make_applyworkflow_workflow_dump_non_.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/da2cb2ac4255_user_group_viewer_paths.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/db09233ad13a_split_filters_and_keep_old_columns.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/e75cac726012_make_applyworkflow_start_timestamp_not_.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/efa89c30e0a4_add_project_timestamp_created.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/migrations/versions/f384e1c0cf5d_drop_task_default_args_columns.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/py.typed +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/ssh/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/ssh/_fabric.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/string_tools.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/syringe.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/utils.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v1/_TaskCollectPip.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v1/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v1/background_operations.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v1/endpoint_operations.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v1/get_collection_data.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v1/utils.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v2/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v2/local/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v2/local/_utils.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v2/local/collect.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v2/local/deactivate.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v2/local/reactivate.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v2/ssh/__init__.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v2/ssh/_utils.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v2/ssh/collect.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v2/ssh/deactivate.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v2/ssh/reactivate.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v2/templates/1_create_venv.sh +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v2/templates/2_pip_install.sh +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v2/templates/3_pip_freeze.sh +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v2/templates/4_pip_show.sh +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v2/templates/5_get_venv_size_and_file_number.sh +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v2/templates/6_pip_install_from_freeze.sh +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v2/utils_background.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v2/utils_database.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v2/utils_package_names.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v2/utils_python_interpreter.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/tasks/v2/utils_templates.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/urls.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/utils.py +0 -0
- {fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/zip_tools.py +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
__VERSION__ = "2.11.0a8"
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/data_migrations/2_11_0.py
RENAMED
@@ -7,12 +7,15 @@ from sqlmodel import select
|
|
7
7
|
from fractal_server.app.db import get_sync_db
|
8
8
|
from fractal_server.app.models import DatasetV2
|
9
9
|
from fractal_server.app.models import JobV2
|
10
|
+
from fractal_server.app.models import ProjectV2
|
10
11
|
from fractal_server.app.models import WorkflowTaskV2
|
12
|
+
from fractal_server.app.models import WorkflowV2
|
11
13
|
from fractal_server.app.schemas.v2 import DatasetReadV2
|
12
14
|
from fractal_server.app.schemas.v2 import JobReadV2
|
13
15
|
from fractal_server.app.schemas.v2 import ProjectReadV2
|
14
16
|
from fractal_server.app.schemas.v2 import TaskReadV2
|
15
17
|
from fractal_server.app.schemas.v2 import WorkflowTaskReadV2
|
18
|
+
from fractal_server.images.models import AttributeFiltersType
|
16
19
|
|
17
20
|
logger = logging.getLogger("fix_db")
|
18
21
|
logger.setLevel(logging.INFO)
|
@@ -21,23 +24,25 @@ logger.setLevel(logging.INFO)
|
|
21
24
|
def dict_values_to_list(
|
22
25
|
input_dict: dict[str, Union[int, float, bool, str, None]],
|
23
26
|
identifier: str,
|
24
|
-
) ->
|
27
|
+
) -> tuple[AttributeFiltersType, bool]:
|
28
|
+
was_there_a_warning = False
|
25
29
|
for k, v in input_dict.items():
|
26
30
|
if not isinstance(v, (int, float, bool, str, type(None))):
|
27
31
|
error_msg = (
|
28
32
|
f"Attribute '{k}' from '{identifier}' "
|
29
|
-
|
33
|
+
"has invalid type '{type(v)}'."
|
30
34
|
)
|
31
35
|
logger.error(error_msg)
|
32
36
|
raise RuntimeError(error_msg)
|
33
37
|
elif v is None:
|
34
38
|
logger.warning(
|
35
|
-
f"Attribute '{k}' from '{identifier}' is
|
36
|
-
"will be removed."
|
39
|
+
f"Attribute '{k}' from '{identifier}' is "
|
40
|
+
"None and it will be removed."
|
37
41
|
)
|
42
|
+
was_there_a_warning = True
|
38
43
|
else:
|
39
44
|
input_dict[k] = [v]
|
40
|
-
return input_dict
|
45
|
+
return input_dict, was_there_a_warning
|
41
46
|
|
42
47
|
|
43
48
|
def fix_db():
|
@@ -45,15 +50,28 @@ def fix_db():
|
|
45
50
|
|
46
51
|
with next(get_sync_db()) as db:
|
47
52
|
# DatasetV2.filters
|
48
|
-
# DatasetV2.history[].workflowtask.input_filters
|
49
53
|
stm = select(DatasetV2).order_by(DatasetV2.id)
|
50
54
|
datasets = db.execute(stm).scalars().all()
|
51
55
|
for ds in datasets:
|
52
56
|
logger.info(f"DatasetV2[{ds.id}] START")
|
53
|
-
ds.
|
57
|
+
if ds.filters is None:
|
58
|
+
logger.info(f"DatasetV2[{ds.id}] SKIP")
|
59
|
+
continue
|
60
|
+
|
61
|
+
ds.attribute_filters, warning = dict_values_to_list(
|
54
62
|
ds.filters["attributes"],
|
55
63
|
f"Dataset[{ds.id}].filters.attributes",
|
56
64
|
)
|
65
|
+
if warning:
|
66
|
+
proj = db.get(ProjectV2, ds.project_id)
|
67
|
+
logger.warning(
|
68
|
+
"Additional information: "
|
69
|
+
f"{proj.id=}, "
|
70
|
+
f"{proj.name=}, "
|
71
|
+
f"{proj.user_list[0].email=}, "
|
72
|
+
f"{ds.id=}, "
|
73
|
+
f"{ds.name=}"
|
74
|
+
)
|
57
75
|
ds.type_filters = ds.filters["types"]
|
58
76
|
ds.filters = None
|
59
77
|
for i, h in enumerate(ds.history):
|
@@ -75,12 +93,26 @@ def fix_db():
|
|
75
93
|
wftasks = db.execute(stm).scalars().all()
|
76
94
|
for wft in wftasks:
|
77
95
|
logger.info(f"WorkflowTaskV2[{wft.id}] START")
|
96
|
+
if wft.input_filters is None:
|
97
|
+
logger.info(f"WorkflowTaskV2[{wft.id}] SKIP")
|
98
|
+
continue
|
78
99
|
wft.type_filters = wft.input_filters["types"]
|
79
100
|
if wft.input_filters["attributes"]:
|
80
101
|
logger.warning(
|
81
102
|
"Removing input_filters['attributes']. "
|
82
103
|
f"(previous value: {wft.input_filters['attributes']})"
|
83
104
|
)
|
105
|
+
wf = db.get(WorkflowV2, wft.workflow_id)
|
106
|
+
proj = db.get(ProjectV2, wf.project_id)
|
107
|
+
logger.warning(
|
108
|
+
"Additional information: "
|
109
|
+
f"{proj.id=}, "
|
110
|
+
f"{proj.name=}, "
|
111
|
+
f"{proj.user_list[0].email=}, "
|
112
|
+
f"{wf.id=}, "
|
113
|
+
f"{wf.name=}, "
|
114
|
+
f"{wft.task.name=}"
|
115
|
+
)
|
84
116
|
wft.input_filters = None
|
85
117
|
flag_modified(wft, "input_filters")
|
86
118
|
WorkflowTaskReadV2(
|
@@ -97,13 +129,34 @@ def fix_db():
|
|
97
129
|
jobs = db.execute(stm).scalars().all()
|
98
130
|
for job in jobs:
|
99
131
|
logger.info(f"JobV2[{job.id}] START")
|
132
|
+
if "filters" not in job.dataset_dump.keys():
|
133
|
+
logger.info(f"JobV2[{job.id}] SKIP")
|
134
|
+
continue
|
100
135
|
job.dataset_dump["type_filters"] = job.dataset_dump["filters"][
|
101
136
|
"types"
|
102
137
|
]
|
103
|
-
|
138
|
+
(
|
139
|
+
job.dataset_dump["attribute_filters"],
|
140
|
+
warning,
|
141
|
+
) = dict_values_to_list(
|
104
142
|
job.dataset_dump["filters"]["attributes"],
|
105
143
|
f"JobV2[{job.id}].dataset_dump.filters.attributes",
|
106
144
|
)
|
145
|
+
if warning and job.project_id is not None:
|
146
|
+
proj = db.get(ProjectV2, job.project_id)
|
147
|
+
logger.warning(
|
148
|
+
"Additional information: "
|
149
|
+
f"{proj.id=}, "
|
150
|
+
f"{proj.name=}, "
|
151
|
+
f"{proj.user_list[0].email=}, "
|
152
|
+
f"{job.id=}, "
|
153
|
+
f"{job.start_timestamp=}, "
|
154
|
+
f"{job.end_timestamp=}, "
|
155
|
+
f"{job.dataset_id=}, "
|
156
|
+
f"{job.workflow_id=}."
|
157
|
+
)
|
158
|
+
# FIXME
|
159
|
+
pass
|
107
160
|
job.dataset_dump.pop("filters")
|
108
161
|
flag_modified(job, "dataset_dump")
|
109
162
|
JobReadV2(**job.model_dump())
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "fractal-server"
|
3
|
-
version = "2.11.
|
3
|
+
version = "2.11.0a8"
|
4
4
|
description = "Backend component of the Fractal analytics platform"
|
5
5
|
authors = [
|
6
6
|
{ name="Tommaso Comparin", email="tommaso.comparin@exact-lab.it" },
|
@@ -95,7 +95,7 @@ filterwarnings = [
|
|
95
95
|
]
|
96
96
|
|
97
97
|
[tool.bumpver]
|
98
|
-
current_version = "2.11.
|
98
|
+
current_version = "2.11.0a8"
|
99
99
|
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
|
100
100
|
commit_message = "bump version {old_version} -> {new_version}"
|
101
101
|
commit = true
|
@@ -1 +0,0 @@
|
|
1
|
-
__VERSION__ = "2.11.0a6"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/linkusergroup.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/linkuserproject.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/user_settings.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/v1/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/v1/workflow.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/v2/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/v2/task_group.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/v2/workflow.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/models/v2/workflowtask.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/admin/__init__.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/admin/v2/__init__.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/admin/v2/job.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/admin/v2/project.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/admin/v2/task.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/admin/v2/task_group.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/__init__.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v1/__init__.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v1/dataset.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v1/project.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v1/task.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v1/workflow.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v1/workflowtask.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/dataset.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/images.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/project.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/status.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/submit.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/task.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/task_group.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/workflow.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/api/v2/workflowtask.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/auth/__init__.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/auth/_aux_auth.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/auth/current_user.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/auth/register.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/auth/router.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/aux/__init__.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/routes/aux/_runner.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/compress_folder.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/executors/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/extract_archive.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/run_subprocess.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v1/__init__.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v1/_local/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v1/_local/executor.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v1/_slurm/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/__init__.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/_local/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/_local/executor.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/deduplicate_list.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/merge_outputs.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/runner_functions.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/runner/v2/task_interface.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/_filter_validators.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/_validators.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/user_group.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/user_settings.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v1/__init__.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v1/applyworkflow.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v1/dataset.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v1/manifest.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v1/project.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v1/task_collection.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v1/workflow.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v2/__init__.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v2/dataset.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v2/manifest.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v2/project.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v2/task_collection.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v2/task_group.py
RENAMED
File without changes
|
{fractal_server-2.11.0a6 → fractal_server-2.11.0a8}/fractal_server/app/schemas/v2/workflow.py
RENAMED
File without changes
|