fractal-server 2.10.3__tar.gz → 2.10.5__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.10.3 → fractal_server-2.10.5}/PKG-INFO +13 -13
- fractal_server-2.10.5/fractal_server/__init__.py +1 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/security/__init__.py +5 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/security/signup_email.py +1 -1
- {fractal_server-2.10.3 → fractal_server-2.10.5}/pyproject.toml +58 -49
- fractal_server-2.10.3/fractal_server/__init__.py +0 -1
- fractal_server-2.10.3/fractal_server/app/runner/.gitignore +0 -2
- fractal_server-2.10.3/fractal_server/migrations/README +0 -1
- fractal_server-2.10.3/fractal_server/migrations/script.py.mako +0 -25
- {fractal_server-2.10.3 → fractal_server-2.10.5}/LICENSE +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/README.md +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/__main__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/alembic.ini +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/db/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/models/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/models/linkusergroup.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/models/linkuserproject.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/models/security.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/models/user_settings.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/models/v1/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/models/v1/dataset.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/models/v1/job.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/models/v1/project.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/models/v1/state.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/models/v1/task.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/models/v1/workflow.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/models/v2/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/models/v2/dataset.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/models/v2/job.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/models/v2/project.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/models/v2/task.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/models/v2/task_group.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/models/v2/workflow.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/models/v2/workflowtask.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/admin/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/admin/v1.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/admin/v2/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/admin/v2/job.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/admin/v2/project.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/admin/v2/task.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/admin/v2/task_group.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/admin/v2/task_group_lifecycle.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v1/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v1/_aux_functions.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v1/dataset.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v1/job.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v1/project.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v1/task.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v1/task_collection.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v1/workflow.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v1/workflowtask.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v2/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v2/_aux_functions.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v2/_aux_functions_task_lifecycle.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v2/_aux_functions_tasks.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v2/dataset.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v2/images.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v2/job.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v2/project.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v2/status.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v2/submit.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v2/task.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v2/task_collection.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v2/task_collection_custom.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v2/task_group.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v2/task_group_lifecycle.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v2/workflow.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v2/workflow_import.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v2/workflowtask.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/auth/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/auth/_aux_auth.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/auth/current_user.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/auth/group.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/auth/login.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/auth/oauth.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/auth/register.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/auth/router.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/auth/users.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/aux/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/aux/_job.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/aux/_runner.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/aux/validate_user_settings.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/async_wrap.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/components.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/compress_folder.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/exceptions.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/executors/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/executors/slurm/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/executors/slurm/_batching.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/executors/slurm/_slurm_config.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/executors/slurm/remote.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/executors/slurm/ssh/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/executors/slurm/ssh/_executor_wait_thread.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/executors/slurm/ssh/_slurm_job.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/executors/slurm/ssh/executor.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/executors/slurm/sudo/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/executors/slurm/sudo/_check_jobs_status.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/executors/slurm/sudo/_executor_wait_thread.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/executors/slurm/sudo/_subprocess_run_as_user.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/executors/slurm/sudo/executor.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/executors/slurm/utils_executors.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/extract_archive.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/filenames.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/run_subprocess.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/set_start_and_last_task_index.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/shutdown.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/task_files.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v1/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v1/_common.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v1/_local/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v1/_local/_local_config.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v1/_local/_submit_setup.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v1/_local/executor.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v1/_slurm/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v1/_slurm/_submit_setup.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v1/_slurm/get_slurm_config.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v1/common.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v1/handle_failed_job.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/_local/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/_local/_local_config.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/_local/_submit_setup.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/_local/executor.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/_local_experimental/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/_local_experimental/_local_config.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/_local_experimental/_submit_setup.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/_local_experimental/executor.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/_slurm_common/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/_slurm_common/get_slurm_config.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/_slurm_ssh/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/_slurm_ssh/_submit_setup.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/_slurm_sudo/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/_slurm_sudo/_submit_setup.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/deduplicate_list.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/handle_failed_job.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/merge_outputs.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/runner.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/runner_functions.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/runner_functions_low_level.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/task_interface.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/versions.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/_validators.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/user.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/user_group.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/user_settings.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/v1/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/v1/applyworkflow.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/v1/dataset.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/v1/dumps.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/v1/manifest.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/v1/project.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/v1/state.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/v1/task.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/v1/task_collection.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/v1/workflow.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/v2/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/v2/dataset.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/v2/dumps.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/v2/job.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/v2/manifest.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/v2/project.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/v2/status.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/v2/task.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/v2/task_collection.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/v2/task_group.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/v2/workflow.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/schemas/v2/workflowtask.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/user_settings.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/config.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/data_migrations/README.md +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/data_migrations/tools.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/gunicorn_fractal.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/images/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/images/models.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/images/tools.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/logger.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/main.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/env.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/naming_convention.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/034a469ec2eb_task_groups.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/091b01f51f88_add_usergroup_and_linkusergroup_table.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/19eca0dd47a9_user_settings_project_dir.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/316140ff7ee1_remove_usersettings_cache_dir.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/4c308bcaea2b_add_task_args_schema_and_task_args_.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/4cedeb448a53_workflowtask_foreign_keys_not_nullables.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/501961cfcd85_remove_link_between_v1_and_v2_tasks_.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/50a13d6138fd_initial_schema.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/5bf02391cfef_v2.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/70e77f1c38b0_add_applyworkflow_first_task_index_and_.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/71eefd1dd202_add_slurm_accounts.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/84bf0fffde30_add_dumps_to_applyworkflow.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/8e8f227a3e36_update_taskv2_post_2_7_0.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/8f79bd162e35_add_docs_info_and_docs_link_to_task_.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/94a47ea2d3ff_remove_cache_dir_slurm_user_and_slurm_.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/97f444d47249_add_applyworkflow_project_dump.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/99ea79d9e5d2_add_dataset_history.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/9c5ae74c9b98_add_user_settings_table.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/9fd26a2b0de4_add_workflow_timestamp_created.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/a7f4d6137b53_add_workflow_dump_to_applyworkflow.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/d256a7379ab8_taskgroup_activity_and_venv_info_to_.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/d4fe3708d309_make_applyworkflow_workflow_dump_non_.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/da2cb2ac4255_user_group_viewer_paths.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/e75cac726012_make_applyworkflow_start_timestamp_not_.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/efa89c30e0a4_add_project_timestamp_created.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/migrations/versions/f384e1c0cf5d_drop_task_default_args_columns.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/py.typed +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/ssh/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/ssh/_fabric.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/string_tools.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/syringe.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/utils.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v1/_TaskCollectPip.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v1/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v1/background_operations.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v1/endpoint_operations.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v1/get_collection_data.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v1/utils.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v2/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v2/local/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v2/local/_utils.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v2/local/collect.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v2/local/deactivate.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v2/local/reactivate.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v2/ssh/__init__.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v2/ssh/_utils.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v2/ssh/collect.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v2/ssh/deactivate.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v2/ssh/reactivate.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v2/templates/1_create_venv.sh +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v2/templates/2_pip_install.sh +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v2/templates/3_pip_freeze.sh +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v2/templates/4_pip_show.sh +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v2/templates/5_get_venv_size_and_file_number.sh +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v2/templates/6_pip_install_from_freeze.sh +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v2/utils_background.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v2/utils_database.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v2/utils_package_names.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v2/utils_python_interpreter.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/tasks/v2/utils_templates.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/urls.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/utils.py +0 -0
- {fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/zip_tools.py +0 -0
@@ -1,12 +1,12 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.3
|
2
2
|
Name: fractal-server
|
3
|
-
Version: 2.10.
|
4
|
-
Summary:
|
3
|
+
Version: 2.10.5
|
4
|
+
Summary: Backend component of the Fractal analytics platform
|
5
5
|
Home-page: https://github.com/fractal-analytics-platform/fractal-server
|
6
6
|
License: BSD-3-Clause
|
7
7
|
Author: Tommaso Comparin
|
8
8
|
Author-email: tommaso.comparin@exact-lab.it
|
9
|
-
Requires-Python: >=3.10,<
|
9
|
+
Requires-Python: >=3.10,<3.13
|
10
10
|
Classifier: License :: OSI Approved :: BSD License
|
11
11
|
Classifier: Programming Language :: Python :: 3
|
12
12
|
Classifier: Programming Language :: Python :: 3.10
|
@@ -14,24 +14,24 @@ Classifier: Programming Language :: Python :: 3.11
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.12
|
15
15
|
Requires-Dist: alembic (>=1.13.1,<2.0.0)
|
16
16
|
Requires-Dist: cloudpickle (>=3.0.0,<3.1.0)
|
17
|
-
Requires-Dist: clusterfutures (
|
17
|
+
Requires-Dist: clusterfutures (==0.5)
|
18
18
|
Requires-Dist: cryptography (>=44.0.0,<44.1.0)
|
19
|
-
Requires-Dist: fabric (>=3.2.2,<
|
19
|
+
Requires-Dist: fabric (>=3.2.2,<3.3.0)
|
20
20
|
Requires-Dist: fastapi (>=0.115.0,<0.116.0)
|
21
21
|
Requires-Dist: fastapi-users[oauth] (>=14,<15)
|
22
22
|
Requires-Dist: gunicorn (>=21.2,<23.0)
|
23
|
-
Requires-Dist: packaging (>=23.2,<24.0)
|
24
|
-
Requires-Dist: psutil (
|
23
|
+
Requires-Dist: packaging (>=23.2.0,<24.0.0)
|
24
|
+
Requires-Dist: psutil (==5.9.8)
|
25
25
|
Requires-Dist: psycopg[binary] (>=3.1.0,<4.0.0)
|
26
26
|
Requires-Dist: pydantic (>=1.10.8,<2)
|
27
|
-
Requires-Dist: python-dotenv (>=1.0.0,<
|
27
|
+
Requires-Dist: python-dotenv (>=1.0.0,<1.1.0)
|
28
28
|
Requires-Dist: sqlalchemy[asyncio] (>=2.0.23,<2.1)
|
29
|
-
Requires-Dist: sqlmodel (
|
30
|
-
Requires-Dist: uvicorn (
|
31
|
-
Requires-Dist: uvicorn-worker (
|
32
|
-
Project-URL: Changelog, https://github.com/fractal-analytics-platform/fractal-server/blob/main/CHANGELOG.md
|
29
|
+
Requires-Dist: sqlmodel (==0.0.21)
|
30
|
+
Requires-Dist: uvicorn (==0.29.0)
|
31
|
+
Requires-Dist: uvicorn-worker (==0.2.0)
|
33
32
|
Project-URL: Documentation, https://fractal-analytics-platform.github.io/fractal-server
|
34
33
|
Project-URL: Repository, https://github.com/fractal-analytics-platform/fractal-server
|
34
|
+
Project-URL: changelog, https://github.com/fractal-analytics-platform/fractal-server/blob/main/CHANGELOG.md
|
35
35
|
Description-Content-Type: text/markdown
|
36
36
|
|
37
37
|
# Fractal Server
|
@@ -0,0 +1 @@
|
|
1
|
+
__VERSION__ = "2.10.5"
|
@@ -254,10 +254,15 @@ class UserManager(IntegerIDMixin, BaseUserManager[UserOAuth, int]):
|
|
254
254
|
|
255
255
|
if this_user.oauth_accounts and settings.MAIL_SETTINGS is not None:
|
256
256
|
try:
|
257
|
+
logger.info(
|
258
|
+
"START sending email about new signup to "
|
259
|
+
f"{settings.MAIL_SETTINGS.recipients}."
|
260
|
+
)
|
257
261
|
mail_new_oauth_signup(
|
258
262
|
msg=f"New user registered: '{this_user.email}'.",
|
259
263
|
mail_settings=settings.MAIL_SETTINGS,
|
260
264
|
)
|
265
|
+
logger.info("END sending email about new signup.")
|
261
266
|
except Exception as e:
|
262
267
|
logger.error(
|
263
268
|
"ERROR sending notification email after oauth "
|
@@ -13,7 +13,7 @@ def mail_new_oauth_signup(msg: str, mail_settings: MailSettings):
|
|
13
13
|
mail_msg = EmailMessage()
|
14
14
|
mail_msg.set_content(msg)
|
15
15
|
mail_msg["From"] = formataddr((mail_settings.sender, mail_settings.sender))
|
16
|
-
mail_msg["To"] = ",".join(
|
16
|
+
mail_msg["To"] = ", ".join(
|
17
17
|
[
|
18
18
|
formataddr((recipient, recipient))
|
19
19
|
for recipient in mail_settings.recipients
|
@@ -1,50 +1,62 @@
|
|
1
|
-
[
|
1
|
+
[project]
|
2
2
|
name = "fractal-server"
|
3
|
-
version = "2.10.
|
4
|
-
description = "
|
3
|
+
version = "2.10.5"
|
4
|
+
description = "Backend component of the Fractal analytics platform"
|
5
5
|
authors = [
|
6
|
-
"Tommaso Comparin
|
7
|
-
"Marco Franzon
|
8
|
-
"Yuri Chiucconi
|
9
|
-
"Jacopo Nespolo
|
6
|
+
{ name="Tommaso Comparin", email="tommaso.comparin@exact-lab.it" },
|
7
|
+
{ name="Marco Franzon", email="marco.franzon@exact-lab.it" },
|
8
|
+
{ name="Yuri Chiucconi", email="yuri.chiucconi@exact-lab.it" },
|
9
|
+
{ name="Jacopo Nespolo", email="jacopo.nespolo@exact-lab.it" },
|
10
10
|
]
|
11
11
|
readme = "README.md"
|
12
|
-
homepage = "https://github.com/fractal-analytics-platform/fractal-server"
|
13
|
-
repository = "https://github.com/fractal-analytics-platform/fractal-server"
|
14
|
-
documentation = "https://fractal-analytics-platform.github.io/fractal-server"
|
15
12
|
license = "BSD-3-Clause"
|
16
|
-
|
17
|
-
|
18
|
-
"
|
19
|
-
"
|
13
|
+
requires-python = ">=3.10,<3.13"
|
14
|
+
dependencies = [
|
15
|
+
"python-dotenv >=1.0.0,<1.1.0",
|
16
|
+
"fastapi >= 0.115.0, <0.116.0",
|
17
|
+
"sqlmodel == 0.0.21",
|
18
|
+
"sqlalchemy[asyncio] >=2.0.23,<2.1",
|
19
|
+
"fastapi-users[oauth] >=14,<15",
|
20
|
+
"alembic >=1.13.1, <2.0.0",
|
21
|
+
"uvicorn == 0.29.0",
|
22
|
+
"pydantic >=1.10.8,<2",
|
23
|
+
"packaging >= 23.2.0, <24.0.0",
|
24
|
+
"clusterfutures == 0.5",
|
25
|
+
"cloudpickle >=3.0.0,<3.1.0",
|
26
|
+
"fabric >= 3.2.2, <3.3.0",
|
27
|
+
"gunicorn >=21.2,<23.0",
|
28
|
+
"psycopg[binary] >= 3.1.0, <4.0.0",
|
29
|
+
"psutil == 5.9.8",
|
30
|
+
"uvicorn-worker == 0.2.0",
|
31
|
+
"cryptography >=44.0.0,<44.1.0",
|
20
32
|
]
|
21
33
|
|
22
|
-
[
|
23
|
-
|
34
|
+
[project.urls]
|
35
|
+
homepage = "https://github.com/fractal-analytics-platform/fractal-server"
|
36
|
+
repository = "https://github.com/fractal-analytics-platform/fractal-server"
|
37
|
+
documentation = "https://fractal-analytics-platform.github.io/fractal-server"
|
38
|
+
changelog = "https://github.com/fractal-analytics-platform/fractal-server/blob/main/CHANGELOG.md"
|
24
39
|
|
40
|
+
[project.scripts]
|
41
|
+
fractalctl = "fractal_server.__main__:run"
|
25
42
|
|
26
|
-
[
|
27
|
-
|
28
|
-
|
29
|
-
fastapi = "^0.115.0"
|
30
|
-
sqlmodel = "^0.0.21"
|
31
|
-
sqlalchemy = {extras = ["asyncio"], version = ">=2.0.23,<2.1"}
|
32
|
-
fastapi-users = {extras = ["oauth"], version = ">=14,<15"}
|
33
|
-
alembic = "^1.13.1"
|
34
|
-
uvicorn = "^0.29.0"
|
35
|
-
pydantic = ">=1.10.8,<2"
|
36
|
-
packaging = "^23.2"
|
37
|
-
clusterfutures = "^0.5"
|
38
|
-
cloudpickle = ">=3.0.0,<3.1.0"
|
39
|
-
fabric = "^3.2.2"
|
43
|
+
[build-system]
|
44
|
+
requires = ["poetry-core"]
|
45
|
+
build-backend = "poetry.core.masonry.api"
|
40
46
|
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
47
|
+
[tool.poetry]
|
48
|
+
requires-poetry = ">=2.0"
|
49
|
+
packages = [
|
50
|
+
{include="fractal_server"}
|
51
|
+
]
|
52
|
+
exclude = [
|
53
|
+
"fractal_server/data_migrations/old",
|
54
|
+
"fractal_server/json_schemas",
|
55
|
+
"fractal_server/migrations/script.py.mako",
|
56
|
+
]
|
46
57
|
|
47
|
-
[tool.poetry.
|
58
|
+
[tool.poetry.group.dev]
|
59
|
+
optional = true
|
48
60
|
|
49
61
|
[tool.poetry.group.dev.dependencies]
|
50
62
|
asgi-lifespan = "^2"
|
@@ -52,7 +64,7 @@ pytest = "8.1.*"
|
|
52
64
|
httpx = "^0.23"
|
53
65
|
devtools = "^0.12"
|
54
66
|
pytest-asyncio = "^0.23"
|
55
|
-
bumpver = "
|
67
|
+
bumpver = ">=2024.0"
|
56
68
|
pre-commit = "^2.19"
|
57
69
|
coverage = {extras = ["toml"], version = "7.5.*"}
|
58
70
|
pytest-docker = {version = "3.1.*"}
|
@@ -62,8 +74,10 @@ pyyaml="^6.0.1"
|
|
62
74
|
a2wsgi = "^1.10.0"
|
63
75
|
jinja2 = "^3.1.3"
|
64
76
|
|
65
|
-
[tool.poetry.group.docs
|
77
|
+
[tool.poetry.group.docs]
|
78
|
+
optional = true
|
66
79
|
|
80
|
+
[tool.poetry.group.docs.dependencies]
|
67
81
|
mkdocs="1.5.3"
|
68
82
|
mkdocstrings = { extras = ["python"], version = "0.25.2" }
|
69
83
|
mkdocs-material="9.5.17"
|
@@ -73,11 +87,6 @@ mkdocs-section-index="0.3.8"
|
|
73
87
|
mkdocs-render-swagger-plugin="0.1.1"
|
74
88
|
pyyaml="^6.0.1"
|
75
89
|
|
76
|
-
|
77
|
-
[build-system]
|
78
|
-
requires = ["poetry-core"]
|
79
|
-
build-backend = "poetry.core.masonry.api"
|
80
|
-
|
81
90
|
[tool.pytest.ini_options]
|
82
91
|
asyncio_mode = "auto"
|
83
92
|
filterwarnings = [
|
@@ -86,7 +95,7 @@ filterwarnings = [
|
|
86
95
|
]
|
87
96
|
|
88
97
|
[tool.bumpver]
|
89
|
-
current_version = "2.10.
|
98
|
+
current_version = "2.10.5"
|
90
99
|
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
|
91
100
|
commit_message = "bump version {old_version} -> {new_version}"
|
92
101
|
commit = true
|
@@ -101,15 +110,15 @@ push = true
|
|
101
110
|
'__VERSION__ = "{version}"$'
|
102
111
|
]
|
103
112
|
|
104
|
-
[tool.poetry.scripts]
|
105
|
-
fractalctl = "fractal_server.__main__:run"
|
106
|
-
|
107
113
|
[tool.coverage.run]
|
108
114
|
branch = true
|
109
115
|
parallel = true
|
110
116
|
relative_files = true
|
111
|
-
omit = ["tests/*", "benchmarks/*", "fractal_server/json_schemas/*"]
|
117
|
+
omit = ["tests/*", "benchmarks/*", "fractal_server/json_schemas/*", "*/.venv/*"]
|
118
|
+
|
119
|
+
[tool.coverage.report]
|
120
|
+
omit = ["tests/*", "benchmarks/*", "fractal_server/json_schemas/*", "*/.venv/*"]
|
112
121
|
|
113
|
-
[
|
122
|
+
[tool.mypy.overrides]
|
114
123
|
module = ["devtools", "uvicorn", "pytest", "asgi_lifespan", "asyncpg"]
|
115
124
|
ignore_missing_imports = true
|
@@ -1 +0,0 @@
|
|
1
|
-
__VERSION__ = "2.10.3"
|
@@ -1 +0,0 @@
|
|
1
|
-
Generic single-database configuration with an async dbapi.
|
@@ -1,25 +0,0 @@
|
|
1
|
-
"""${message}
|
2
|
-
|
3
|
-
Revision ID: ${up_revision}
|
4
|
-
Revises: ${down_revision | comma,n}
|
5
|
-
Create Date: ${create_date}
|
6
|
-
|
7
|
-
"""
|
8
|
-
from alembic import op
|
9
|
-
import sqlalchemy as sa
|
10
|
-
import sqlmodel
|
11
|
-
${imports if imports else ""}
|
12
|
-
|
13
|
-
# revision identifiers, used by Alembic.
|
14
|
-
revision = ${repr(up_revision)}
|
15
|
-
down_revision = ${repr(down_revision)}
|
16
|
-
branch_labels = ${repr(branch_labels)}
|
17
|
-
depends_on = ${repr(depends_on)}
|
18
|
-
|
19
|
-
|
20
|
-
def upgrade() -> None:
|
21
|
-
${upgrades if upgrades else "pass"}
|
22
|
-
|
23
|
-
|
24
|
-
def downgrade() -> None:
|
25
|
-
${downgrades if downgrades else "pass"}
|
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.10.3 → fractal_server-2.10.5}/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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/models/v2/workflowtask.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/admin/v2/__init__.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/admin/v2/project.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/admin/v2/task_group.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v1/__init__.py
RENAMED
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/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.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v1/task_collection.py
RENAMED
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v1/workflow.py
RENAMED
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v1/workflowtask.py
RENAMED
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v2/__init__.py
RENAMED
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/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
|
File without changes
|
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v2/task_collection.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v2/task_group.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v2/workflow.py
RENAMED
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v2/workflow_import.py
RENAMED
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/api/v2/workflowtask.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/routes/auth/current_user.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.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/compress_folder.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/executors/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/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
|
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/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.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v1/_local/__init__.py
RENAMED
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v1/_local/_local_config.py
RENAMED
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v1/_local/_submit_setup.py
RENAMED
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v1/_local/executor.py
RENAMED
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v1/_slurm/__init__.py
RENAMED
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v1/_slurm/_submit_setup.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v1/handle_failed_job.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/_local/__init__.py
RENAMED
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/_local/_local_config.py
RENAMED
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/_local/_submit_setup.py
RENAMED
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/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.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/_slurm_ssh/__init__.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.10.3 → fractal_server-2.10.5}/fractal_server/app/runner/v2/_slurm_sudo/__init__.py
RENAMED
File without changes
|