fractal-server 2.6.0a1__tar.gz → 2.6.1__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.6.0a1 → fractal_server-2.6.1}/PKG-INFO +1 -1
- fractal_server-2.6.1/fractal_server/__init__.py +1 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/models/security.py +0 -6
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/v2/task_collection.py +5 -4
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/config.py +0 -19
- fractal_server-2.6.1/fractal_server/migrations/versions/94a47ea2d3ff_remove_cache_dir_slurm_user_and_slurm_.py +52 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/ssh/_fabric.py +14 -14
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/string_tools.py +2 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/pyproject.toml +2 -2
- fractal_server-2.6.0a1/fractal_server/__init__.py +0 -1
- fractal_server-2.6.0a1/fractal_server/data_migrations/2_6_0.py +0 -49
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/LICENSE +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/README.md +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/__main__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/alembic.ini +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/db/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/models/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/models/linkusergroup.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/models/linkuserproject.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/models/user_settings.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/models/v1/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/models/v1/dataset.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/models/v1/job.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/models/v1/project.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/models/v1/state.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/models/v1/task.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/models/v1/workflow.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/models/v2/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/models/v2/collection_state.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/models/v2/dataset.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/models/v2/job.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/models/v2/project.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/models/v2/task.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/models/v2/workflow.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/models/v2/workflowtask.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/admin/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/admin/v1.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/admin/v2.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v1/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v1/_aux_functions.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v1/dataset.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v1/job.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v1/project.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v1/task.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v1/task_collection.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v1/workflow.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v1/workflowtask.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v2/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v2/_aux_functions.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v2/dataset.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v2/images.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v2/job.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v2/project.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v2/status.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v2/submit.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v2/task.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v2/task_collection.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v2/task_collection_custom.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v2/workflow.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v2/workflowtask.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/auth/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/auth/_aux_auth.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/auth/current_user.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/auth/group.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/auth/group_names.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/auth/login.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/auth/oauth.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/auth/register.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/auth/router.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/auth/users.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/aux/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/aux/_job.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/aux/_runner.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/aux/validate_user_settings.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/.gitignore +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/async_wrap.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/components.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/compress_folder.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/exceptions.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/executors/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/executors/slurm/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/executors/slurm/_batching.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/executors/slurm/_slurm_config.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/executors/slurm/remote.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/executors/slurm/ssh/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/executors/slurm/ssh/_executor_wait_thread.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/executors/slurm/ssh/_slurm_job.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/executors/slurm/ssh/executor.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/executors/slurm/sudo/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/executors/slurm/sudo/_check_jobs_status.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/executors/slurm/sudo/_executor_wait_thread.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/executors/slurm/sudo/_subprocess_run_as_user.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/executors/slurm/sudo/executor.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/extract_archive.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/filenames.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/run_subprocess.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/set_start_and_last_task_index.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/shutdown.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/task_files.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v1/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v1/_common.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v1/_local/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v1/_local/_local_config.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v1/_local/_submit_setup.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v1/_local/executor.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v1/_slurm/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v1/_slurm/_submit_setup.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v1/_slurm/get_slurm_config.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v1/common.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v1/handle_failed_job.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/_local/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/_local/_local_config.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/_local/_submit_setup.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/_local/executor.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/_local_experimental/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/_local_experimental/_local_config.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/_local_experimental/_submit_setup.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/_local_experimental/executor.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/_slurm_common/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/_slurm_common/get_slurm_config.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/_slurm_ssh/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/_slurm_ssh/_submit_setup.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/_slurm_sudo/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/_slurm_sudo/_submit_setup.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/deduplicate_list.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/handle_failed_job.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/merge_outputs.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/runner.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/runner_functions.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/runner_functions_low_level.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/task_interface.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/versions.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/_validators.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/user.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/user_group.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/user_settings.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/v1/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/v1/applyworkflow.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/v1/dataset.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/v1/dumps.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/v1/manifest.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/v1/project.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/v1/state.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/v1/task.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/v1/task_collection.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/v1/workflow.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/v2/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/v2/dataset.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/v2/dumps.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/v2/job.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/v2/manifest.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/v2/project.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/v2/status.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/v2/task.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/v2/workflow.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/v2/workflowtask.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/security/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/user_settings.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/data_migrations/README.md +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/data_migrations/tools.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/gunicorn_fractal.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/images/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/images/models.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/images/tools.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/logger.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/main.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/migrations/README +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/migrations/env.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/migrations/naming_convention.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/migrations/script.py.mako +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/migrations/versions/091b01f51f88_add_usergroup_and_linkusergroup_table.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/migrations/versions/4c308bcaea2b_add_task_args_schema_and_task_args_.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/migrations/versions/4cedeb448a53_workflowtask_foreign_keys_not_nullables.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/migrations/versions/501961cfcd85_remove_link_between_v1_and_v2_tasks_.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/migrations/versions/50a13d6138fd_initial_schema.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/migrations/versions/5bf02391cfef_v2.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/migrations/versions/70e77f1c38b0_add_applyworkflow_first_task_index_and_.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/migrations/versions/71eefd1dd202_add_slurm_accounts.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/migrations/versions/84bf0fffde30_add_dumps_to_applyworkflow.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/migrations/versions/8f79bd162e35_add_docs_info_and_docs_link_to_task_.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/migrations/versions/97f444d47249_add_applyworkflow_project_dump.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/migrations/versions/99ea79d9e5d2_add_dataset_history.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/migrations/versions/9c5ae74c9b98_add_user_settings_table.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/migrations/versions/9fd26a2b0de4_add_workflow_timestamp_created.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/migrations/versions/a7f4d6137b53_add_workflow_dump_to_applyworkflow.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/migrations/versions/d4fe3708d309_make_applyworkflow_workflow_dump_non_.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/migrations/versions/e75cac726012_make_applyworkflow_start_timestamp_not_.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/migrations/versions/efa89c30e0a4_add_project_timestamp_created.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/migrations/versions/f384e1c0cf5d_drop_task_default_args_columns.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/py.typed +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/ssh/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/syringe.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/utils.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v1/_TaskCollectPip.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v1/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v1/background_operations.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v1/endpoint_operations.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v1/get_collection_data.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v1/utils.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v2/_TaskCollectPip.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v2/__init__.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v2/_venv_pip.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v2/background_operations.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v2/background_operations_ssh.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v2/endpoint_operations.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v2/templates/_1_create_venv.sh +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v2/templates/_2_upgrade_pip.sh +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v2/templates/_3_pip_install.sh +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v2/templates/_4_pip_freeze.sh +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v2/templates/_5_pip_show.sh +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v2/utils.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/urls.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/utils.py +0 -0
- {fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/zip_tools.py +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
__VERSION__ = "2.6.1"
|
@@ -15,7 +15,6 @@ from typing import Optional
|
|
15
15
|
from pydantic import EmailStr
|
16
16
|
from sqlalchemy import Column
|
17
17
|
from sqlalchemy.types import DateTime
|
18
|
-
from sqlalchemy.types import JSON
|
19
18
|
from sqlmodel import Field
|
20
19
|
from sqlmodel import Relationship
|
21
20
|
from sqlmodel import SQLModel
|
@@ -93,11 +92,6 @@ class UserOAuth(SQLModel, table=True):
|
|
93
92
|
is_superuser: bool = Field(False, nullable=False)
|
94
93
|
is_verified: bool = Field(False, nullable=False)
|
95
94
|
|
96
|
-
slurm_user: Optional[str]
|
97
|
-
slurm_accounts: list[str] = Field(
|
98
|
-
sa_column=Column(JSON, server_default="[]", nullable=False)
|
99
|
-
)
|
100
|
-
cache_dir: Optional[str]
|
101
95
|
username: Optional[str]
|
102
96
|
|
103
97
|
oauth_accounts: list["OAuthAccount"] = Relationship(
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/v2/task_collection.py
RENAMED
@@ -13,6 +13,7 @@ from .._validators import valdictkeys
|
|
13
13
|
from .._validators import valstr
|
14
14
|
from fractal_server.app.schemas._validators import valutc
|
15
15
|
from fractal_server.app.schemas.v2 import ManifestV2
|
16
|
+
from fractal_server.string_tools import validate_cmd
|
16
17
|
|
17
18
|
|
18
19
|
class CollectionStatusV2(str, Enum):
|
@@ -144,13 +145,13 @@ class TaskCollectCustomV2(BaseModel):
|
|
144
145
|
return values
|
145
146
|
|
146
147
|
@validator("package_name")
|
147
|
-
def
|
148
|
+
def package_name_validator(cls, value: str):
|
148
149
|
"""
|
149
|
-
Remove all whitespace characters,
|
150
|
+
Remove all whitespace characters, then check for invalid code.
|
150
151
|
"""
|
151
152
|
if value is not None:
|
152
|
-
|
153
|
-
|
153
|
+
validate_cmd(value)
|
154
|
+
value = valstr("package_name")(value)
|
154
155
|
value = value.replace(" ", "")
|
155
156
|
return value
|
156
157
|
|
@@ -512,25 +512,6 @@ class Settings(BaseSettings):
|
|
512
512
|
`JobExecutionError`.
|
513
513
|
"""
|
514
514
|
|
515
|
-
FRACTAL_SLURM_SSH_HOST: Optional[str] = None
|
516
|
-
"""
|
517
|
-
SSH-reachable host where a SLURM client is available.
|
518
|
-
"""
|
519
|
-
FRACTAL_SLURM_SSH_USER: Optional[str] = None
|
520
|
-
"""
|
521
|
-
User on `FRACTAL_SLURM_SSH_HOST`.
|
522
|
-
"""
|
523
|
-
FRACTAL_SLURM_SSH_PRIVATE_KEY_PATH: Optional[str] = None
|
524
|
-
"""
|
525
|
-
Private key for connecting to `FRACTAL_SLURM_SSH_HOST` as
|
526
|
-
`FRACTAL_SLURM_SSH_USER`.
|
527
|
-
"""
|
528
|
-
# FIXME SSH: Split this into two folders (for tasks and for jobs)
|
529
|
-
FRACTAL_SLURM_SSH_WORKING_BASE_DIR: Optional[str] = None
|
530
|
-
"""
|
531
|
-
Remote folder on `FRACTAL_SLURM_SSH_HOST`.
|
532
|
-
"""
|
533
|
-
|
534
515
|
FRACTAL_API_SUBMIT_RATE_LIMIT: int = 2
|
535
516
|
"""
|
536
517
|
Interval to wait (in seconds) to be allowed to call again
|
@@ -0,0 +1,52 @@
|
|
1
|
+
"""remove cache_dir slurm_user and slurm_accounts from user
|
2
|
+
|
3
|
+
Revision ID: 94a47ea2d3ff
|
4
|
+
Revises: 9c5ae74c9b98
|
5
|
+
Create Date: 2024-09-25 09:33:18.014831
|
6
|
+
|
7
|
+
"""
|
8
|
+
import sqlalchemy as sa
|
9
|
+
from alembic import op
|
10
|
+
from sqlalchemy.dialects import postgresql
|
11
|
+
|
12
|
+
# revision identifiers, used by Alembic.
|
13
|
+
revision = "94a47ea2d3ff"
|
14
|
+
down_revision = "9c5ae74c9b98"
|
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.drop_column("slurm_user")
|
23
|
+
batch_op.drop_column("slurm_accounts")
|
24
|
+
batch_op.drop_column("cache_dir")
|
25
|
+
|
26
|
+
# ### end Alembic commands ###
|
27
|
+
|
28
|
+
|
29
|
+
def downgrade() -> None:
|
30
|
+
# ### commands auto generated by Alembic - please adjust! ###
|
31
|
+
with op.batch_alter_table("user_oauth", schema=None) as batch_op:
|
32
|
+
batch_op.add_column(
|
33
|
+
sa.Column(
|
34
|
+
"cache_dir", sa.VARCHAR(), autoincrement=False, nullable=True
|
35
|
+
)
|
36
|
+
)
|
37
|
+
batch_op.add_column(
|
38
|
+
sa.Column(
|
39
|
+
"slurm_accounts",
|
40
|
+
postgresql.JSON(astext_type=sa.Text()),
|
41
|
+
server_default=sa.text("'[]'::json"),
|
42
|
+
autoincrement=False,
|
43
|
+
nullable=False,
|
44
|
+
)
|
45
|
+
)
|
46
|
+
batch_op.add_column(
|
47
|
+
sa.Column(
|
48
|
+
"slurm_user", sa.VARCHAR(), autoincrement=False, nullable=True
|
49
|
+
)
|
50
|
+
)
|
51
|
+
|
52
|
+
# ### end Alembic commands ###
|
@@ -305,21 +305,21 @@ class FractalSSH(object):
|
|
305
305
|
safe_root: If `folder` is not a subfolder of the absolute
|
306
306
|
`safe_root` path, raise an error.
|
307
307
|
"""
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
308
|
+
validate_cmd(folder)
|
309
|
+
validate_cmd(safe_root)
|
310
|
+
|
311
|
+
if " " in folder:
|
312
|
+
raise ValueError(f"folder='{folder}' includes whitespace.")
|
313
|
+
elif " " in safe_root:
|
314
|
+
raise ValueError(f"safe_root='{safe_root}' includes whitespace.")
|
315
|
+
elif not Path(folder).is_absolute():
|
316
|
+
raise ValueError(f"{folder=} is not an absolute path.")
|
317
|
+
elif not Path(safe_root).is_absolute():
|
318
|
+
raise ValueError(f"{safe_root=} is not an absolute path.")
|
319
|
+
elif not (
|
320
|
+
Path(folder).resolve().is_relative_to(Path(safe_root).resolve())
|
318
321
|
):
|
319
|
-
raise ValueError(
|
320
|
-
f"{folder=} argument is invalid or it is not "
|
321
|
-
f"relative to {safe_root=}."
|
322
|
-
)
|
322
|
+
raise ValueError(f"{folder=} is not a subfolder of {safe_root=}.")
|
323
323
|
else:
|
324
324
|
cmd = f"rm -r {folder}"
|
325
325
|
self.run_command(cmd=cmd)
|
@@ -60,6 +60,8 @@ def validate_cmd(command: str, allow_char: Optional[str] = None):
|
|
60
60
|
command: command to validate.
|
61
61
|
allow_char: chars to accept among the forbidden ones
|
62
62
|
"""
|
63
|
+
if not isinstance(command, str):
|
64
|
+
raise ValueError(f"{command=} is not a string.")
|
63
65
|
forbidden = set(__NOT_ALLOWED_FOR_COMMANDS__)
|
64
66
|
if allow_char is not None:
|
65
67
|
forbidden = forbidden - set(allow_char)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "fractal-server"
|
3
|
-
version = "2.6.
|
3
|
+
version = "2.6.1"
|
4
4
|
description = "Server component of the Fractal analytics platform"
|
5
5
|
authors = [
|
6
6
|
"Tommaso Comparin <tommaso.comparin@exact-lab.it>",
|
@@ -92,7 +92,7 @@ filterwarnings = [
|
|
92
92
|
]
|
93
93
|
|
94
94
|
[tool.bumpver]
|
95
|
-
current_version = "2.6.
|
95
|
+
current_version = "2.6.1"
|
96
96
|
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
|
97
97
|
commit_message = "bump version {old_version} -> {new_version}"
|
98
98
|
commit = true
|
@@ -1 +0,0 @@
|
|
1
|
-
__VERSION__ = "2.6.0a1"
|
@@ -1,49 +0,0 @@
|
|
1
|
-
import logging
|
2
|
-
|
3
|
-
from sqlalchemy import select
|
4
|
-
|
5
|
-
from fractal_server.app.db import get_sync_db
|
6
|
-
from fractal_server.app.models import UserOAuth
|
7
|
-
from fractal_server.app.models import UserSettings
|
8
|
-
from fractal_server.config import get_settings
|
9
|
-
from fractal_server.data_migrations.tools import _check_current_version
|
10
|
-
from fractal_server.syringe import Inject
|
11
|
-
|
12
|
-
|
13
|
-
def fix_db():
|
14
|
-
logger = logging.getLogger("fix_db")
|
15
|
-
logger.warning("START execution of fix_db function")
|
16
|
-
_check_current_version("2.6.0")
|
17
|
-
|
18
|
-
global_settings = Inject(get_settings)
|
19
|
-
|
20
|
-
with next(get_sync_db()) as db:
|
21
|
-
users = db.execute(select(UserOAuth)).scalars().unique().all()
|
22
|
-
for user in sorted(users, key=lambda x: x.id):
|
23
|
-
logger.warning(f"START handling user {user.id}: '{user.email}'")
|
24
|
-
user_settings = UserSettings(
|
25
|
-
# SSH
|
26
|
-
ssh_host=global_settings.FRACTAL_SLURM_SSH_HOST,
|
27
|
-
ssh_username=global_settings.FRACTAL_SLURM_SSH_USER,
|
28
|
-
ssh_private_key_path=(
|
29
|
-
global_settings.FRACTAL_SLURM_SSH_PRIVATE_KEY_PATH
|
30
|
-
),
|
31
|
-
ssh_tasks_dir=(
|
32
|
-
global_settings.FRACTAL_SLURM_SSH_WORKING_BASE_DIR
|
33
|
-
),
|
34
|
-
ssh_jobs_dir=(
|
35
|
-
global_settings.FRACTAL_SLURM_SSH_WORKING_BASE_DIR
|
36
|
-
),
|
37
|
-
# SUDO
|
38
|
-
slurm_user=user.slurm_user,
|
39
|
-
slurm_accounts=user.slurm_accounts,
|
40
|
-
cache_dir=user.cache_dir,
|
41
|
-
)
|
42
|
-
user.settings = user_settings
|
43
|
-
db.add(user)
|
44
|
-
db.commit()
|
45
|
-
db.refresh(user)
|
46
|
-
logger.warning(f"New user {user.id} settings:\n{user.settings}")
|
47
|
-
logger.warning(f"END handling user {user.id}: '{user.email}'")
|
48
|
-
|
49
|
-
logger.warning("END of execution of fix_db function")
|
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.6.0a1 → fractal_server-2.6.1}/fractal_server/app/models/linkuserproject.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
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/models/v2/collection_state.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/models/v2/workflowtask.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v1/__init__.py
RENAMED
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v1/_aux_functions.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v1/task_collection.py
RENAMED
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v1/workflow.py
RENAMED
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v1/workflowtask.py
RENAMED
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v2/__init__.py
RENAMED
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v2/_aux_functions.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
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v2/task_collection.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v2/workflow.py
RENAMED
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/api/v2/workflowtask.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/auth/current_user.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/routes/auth/group_names.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
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/compress_folder.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/executors/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/executors/slurm/remote.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
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/extract_archive.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
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v1/_local/__init__.py
RENAMED
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v1/_local/_local_config.py
RENAMED
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v1/_local/_submit_setup.py
RENAMED
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v1/_local/executor.py
RENAMED
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v1/_slurm/__init__.py
RENAMED
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v1/_slurm/_submit_setup.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v1/handle_failed_job.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/_local/__init__.py
RENAMED
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/_local/_local_config.py
RENAMED
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/_local/_submit_setup.py
RENAMED
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/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
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/_slurm_ssh/__init__.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/_slurm_sudo/__init__.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/deduplicate_list.py
RENAMED
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/handle_failed_job.py
RENAMED
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/merge_outputs.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/runner_functions.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/runner/v2/task_interface.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
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/v1/applyworkflow.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/v1/task_collection.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.6.0a1 → fractal_server-2.6.1}/fractal_server/app/schemas/v2/workflowtask.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
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/migrations/naming_convention.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
|
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.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v1/background_operations.py
RENAMED
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v1/endpoint_operations.py
RENAMED
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v1/get_collection_data.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v2/background_operations.py
RENAMED
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v2/background_operations_ssh.py
RENAMED
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v2/endpoint_operations.py
RENAMED
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v2/templates/_1_create_venv.sh
RENAMED
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v2/templates/_2_upgrade_pip.sh
RENAMED
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v2/templates/_3_pip_install.sh
RENAMED
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v2/templates/_4_pip_freeze.sh
RENAMED
File without changes
|
{fractal_server-2.6.0a1 → fractal_server-2.6.1}/fractal_server/tasks/v2/templates/_5_pip_show.sh
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|