fractal-server 2.14.0a8__tar.gz → 2.14.0a9__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.14.0a8 → fractal_server-2.14.0a9}/PKG-INFO +1 -1
- fractal_server-2.14.0a9/fractal_server/__init__.py +1 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/workflow.py +23 -60
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/pyproject.toml +2 -2
- fractal_server-2.14.0a8/fractal_server/__init__.py +0 -1
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/LICENSE +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/README.md +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/__main__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/alembic.ini +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/db/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/history/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/models/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/models/linkusergroup.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/models/linkuserproject.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/models/security.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/models/user_settings.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/models/v2/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/models/v2/accounting.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/models/v2/dataset.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/models/v2/history.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/models/v2/job.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/models/v2/project.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/models/v2/task.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/models/v2/task_group.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/models/v2/workflow.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/models/v2/workflowtask.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/admin/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/admin/v2/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/admin/v2/accounting.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/admin/v2/impersonate.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/admin/v2/job.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/admin/v2/project.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/admin/v2/task.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/admin/v2/task_group.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/admin/v2/task_group_lifecycle.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/_aux_functions.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/_aux_functions_history.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/_aux_functions_task_lifecycle.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/_aux_functions_tasks.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/dataset.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/history.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/images.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/job.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/project.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/status_legacy.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/submit.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/task.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/task_collection.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/task_collection_custom.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/task_group.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/task_group_lifecycle.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/workflow_import.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/workflowtask.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/auth/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/auth/_aux_auth.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/auth/current_user.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/auth/group.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/auth/login.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/auth/oauth.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/auth/register.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/auth/router.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/auth/users.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/aux/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/aux/_job.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/aux/_runner.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/aux/validate_user_settings.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/pagination.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/components.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/compress_folder.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/exceptions.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/executors/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/executors/base_runner.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/executors/local/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/executors/local/_local_config.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/executors/local/_submit_setup.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/executors/local/runner.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/executors/slurm_common/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/executors/slurm_common/_batching.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/executors/slurm_common/_job_states.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/executors/slurm_common/_slurm_config.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/executors/slurm_common/_submit_setup.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/executors/slurm_common/get_slurm_config.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/executors/slurm_common/remote.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/executors/slurm_common/utils_executors.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/executors/slurm_ssh/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/executors/slurm_ssh/_executor_wait_thread.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/executors/slurm_ssh/_slurm_job.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/executors/slurm_ssh/executor.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/executors/slurm_sudo/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/executors/slurm_sudo/_check_jobs_status.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/executors/slurm_sudo/_subprocess_run_as_user.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/executors/slurm_sudo/runner.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/extract_archive.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/filenames.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/run_subprocess.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/set_start_and_last_task_index.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/shutdown.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/task_files.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/v2/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/v2/_db_tools.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/v2/_local.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/v2/_slurm_ssh.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/v2/_slurm_sudo.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/v2/deduplicate_list.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/v2/merge_outputs.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/v2/runner.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/v2/runner_functions.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/v2/runner_functions_low_level.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/v2/task_interface.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/versions.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/_filter_validators.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/_validators.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/user.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/user_group.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/user_settings.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/v2/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/v2/accounting.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/v2/dataset.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/v2/dumps.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/v2/history.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/v2/job.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/v2/manifest.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/v2/project.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/v2/status_legacy.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/v2/task.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/v2/task_collection.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/v2/task_group.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/v2/workflow.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/v2/workflowtask.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/security/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/security/signup_email.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/user_settings.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/config.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/data_migrations/README.md +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/data_migrations/tools.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/gunicorn_fractal.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/images/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/images/models.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/images/tools.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/logger.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/main.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/env.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/naming_convention.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/034a469ec2eb_task_groups.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/091b01f51f88_add_usergroup_and_linkusergroup_table.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/19eca0dd47a9_user_settings_project_dir.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/1eac13a26c83_drop_v1_tables.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/316140ff7ee1_remove_usersettings_cache_dir.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/4c308bcaea2b_add_task_args_schema_and_task_args_.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/4cedeb448a53_workflowtask_foreign_keys_not_nullables.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/501961cfcd85_remove_link_between_v1_and_v2_tasks_.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/50a13d6138fd_initial_schema.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/5bf02391cfef_v2.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/70e77f1c38b0_add_applyworkflow_first_task_index_and_.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/71eefd1dd202_add_slurm_accounts.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/84bf0fffde30_add_dumps_to_applyworkflow.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/8e8f227a3e36_update_taskv2_post_2_7_0.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/8f79bd162e35_add_docs_info_and_docs_link_to_task_.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/94a47ea2d3ff_remove_cache_dir_slurm_user_and_slurm_.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/97f444d47249_add_applyworkflow_project_dump.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/99ea79d9e5d2_add_dataset_history.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/9c5ae74c9b98_add_user_settings_table.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/9fd26a2b0de4_add_workflow_timestamp_created.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/a7f4d6137b53_add_workflow_dump_to_applyworkflow.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/af1ef1c83c9b_add_accounting_tables.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/af8673379a5c_drop_old_filter_columns.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/d256a7379ab8_taskgroup_activity_and_venv_info_to_.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/d4fe3708d309_make_applyworkflow_workflow_dump_non_.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/da2cb2ac4255_user_group_viewer_paths.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/db09233ad13a_split_filters_and_keep_old_columns.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/e75cac726012_make_applyworkflow_start_timestamp_not_.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/efa89c30e0a4_add_project_timestamp_created.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/f384e1c0cf5d_drop_task_default_args_columns.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/migrations/versions/fbce16ff4e47_new_history_items.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/py.typed +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/ssh/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/ssh/_fabric.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/string_tools.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/syringe.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/utils.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/local/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/local/_utils.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/local/collect.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/local/deactivate.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/local/reactivate.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/ssh/__init__.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/ssh/_utils.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/ssh/collect.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/ssh/deactivate.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/ssh/reactivate.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/templates/1_create_venv.sh +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/templates/2_pip_install.sh +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/templates/3_pip_freeze.sh +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/templates/4_pip_show.sh +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/templates/5_get_venv_size_and_file_number.sh +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/templates/6_pip_install_from_freeze.sh +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/utils_background.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/utils_database.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/utils_package_names.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/utils_python_interpreter.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/utils_templates.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/urls.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/utils.py +0 -0
- {fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/zip_tools.py +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
__VERSION__ = "2.14.0a9"
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/workflow.py
RENAMED
@@ -14,16 +14,12 @@ from ....db import get_async_db
|
|
14
14
|
from ....models.v2 import JobV2
|
15
15
|
from ....models.v2 import ProjectV2
|
16
16
|
from ....models.v2 import WorkflowV2
|
17
|
-
from ....runner.set_start_and_last_task_index import (
|
18
|
-
set_start_and_last_task_index,
|
19
|
-
)
|
20
17
|
from ....schemas.v2 import WorkflowCreateV2
|
21
18
|
from ....schemas.v2 import WorkflowExportV2
|
22
19
|
from ....schemas.v2 import WorkflowReadV2
|
23
20
|
from ....schemas.v2 import WorkflowReadV2WithWarnings
|
24
21
|
from ....schemas.v2 import WorkflowUpdateV2
|
25
22
|
from ._aux_functions import _check_workflow_exists
|
26
|
-
from ._aux_functions import _get_dataset_check_owner
|
27
23
|
from ._aux_functions import _get_project_check_owner
|
28
24
|
from ._aux_functions import _get_submitted_jobs_statement
|
29
25
|
from ._aux_functions import _get_workflow_check_owner
|
@@ -293,27 +289,21 @@ async def get_user_workflows(
|
|
293
289
|
return workflow_list
|
294
290
|
|
295
291
|
|
296
|
-
class
|
297
|
-
|
298
|
-
|
299
|
-
|
292
|
+
class WorkflowTaskTypeFiltersInfo(BaseModel):
|
293
|
+
current_type_filters: dict[str, bool]
|
294
|
+
input_type_filters: dict[str, bool]
|
295
|
+
output_type_filters: dict[str, bool]
|
300
296
|
|
301
297
|
|
302
|
-
@router.get(
|
303
|
-
"/project/{project_id}/workflow/{workflow_id}/type-filters-flow/",
|
304
|
-
response_model=TypeFiltersFlow,
|
305
|
-
)
|
298
|
+
@router.get("/project/{project_id}/workflow/{workflow_id}/type-filters-flow/")
|
306
299
|
async def get_workflow_type_filters(
|
307
300
|
project_id: int,
|
308
301
|
workflow_id: int,
|
309
|
-
dataset_id: Optional[int] = None,
|
310
|
-
first_task_index: Optional[int] = None,
|
311
|
-
last_task_index: Optional[int] = None,
|
312
302
|
user: UserOAuth = Depends(current_active_user),
|
313
303
|
db: AsyncSession = Depends(get_async_db),
|
314
|
-
) ->
|
304
|
+
) -> dict[str, WorkflowTaskTypeFiltersInfo]:
|
315
305
|
"""
|
316
|
-
Get info on
|
306
|
+
Get info on type/type-filters flow for a workflow.
|
317
307
|
"""
|
318
308
|
|
319
309
|
workflow = await _get_workflow_check_owner(
|
@@ -323,59 +313,32 @@ async def get_workflow_type_filters(
|
|
323
313
|
db=db,
|
324
314
|
)
|
325
315
|
|
326
|
-
|
316
|
+
num_tasks = len(workflow.task_list)
|
317
|
+
if num_tasks == 0:
|
327
318
|
raise HTTPException(
|
328
319
|
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
|
329
320
|
detail="Workflow has no tasks.",
|
330
321
|
)
|
331
322
|
|
332
|
-
|
333
|
-
dataset_type_filters = {}
|
334
|
-
else:
|
335
|
-
res = await _get_dataset_check_owner(
|
336
|
-
project_id=project_id,
|
337
|
-
dataset_id=dataset_id,
|
338
|
-
user_id=user.id,
|
339
|
-
db=db,
|
340
|
-
)
|
341
|
-
dataset = res["dataset"]
|
342
|
-
dataset_type_filters = dataset.type_filters
|
343
|
-
|
344
|
-
num_tasks = len(workflow.task_list)
|
345
|
-
try:
|
346
|
-
first_task_index, last_task_index = set_start_and_last_task_index(
|
347
|
-
num_tasks,
|
348
|
-
first_task_index=first_task_index,
|
349
|
-
last_task_index=last_task_index,
|
350
|
-
)
|
351
|
-
except ValueError as e:
|
352
|
-
raise HTTPException(
|
353
|
-
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
|
354
|
-
detail=f"Invalid first/last task index.\nOriginal error: {str(e)}",
|
355
|
-
)
|
323
|
+
current_type_filters = {}
|
356
324
|
|
357
|
-
|
358
|
-
|
359
|
-
list_filters_out = []
|
360
|
-
for wftask in workflow.task_list[first_task_index : last_task_index + 1]:
|
325
|
+
response = {}
|
326
|
+
for wftask in workflow.task_list:
|
361
327
|
|
362
|
-
input_type_filters
|
363
|
-
|
328
|
+
# Compute input_type_filters, based on wftask and task manifest
|
329
|
+
input_type_filters = merge_type_filters(
|
364
330
|
wftask_type_filters=wftask.type_filters,
|
365
331
|
task_input_types=wftask.task.input_types,
|
366
332
|
)
|
367
|
-
input_type_filters.update(patch)
|
368
|
-
list_filters_in.append(copy(input_type_filters))
|
369
333
|
|
370
|
-
|
371
|
-
|
334
|
+
# Append current item to response list
|
335
|
+
response[str(wftask.id)] = dict(
|
336
|
+
current_type_filters=copy(current_type_filters),
|
337
|
+
input_type_filters=copy(input_type_filters),
|
338
|
+
output_type_filters=copy(wftask.task.output_types),
|
339
|
+
)
|
372
340
|
|
373
|
-
|
374
|
-
|
341
|
+
# Update `current_type_filters`
|
342
|
+
current_type_filters.update(wftask.task.output_types)
|
375
343
|
|
376
|
-
|
377
|
-
dataset_filters=list_dataset_filters,
|
378
|
-
input_filters=list_filters_in,
|
379
|
-
output_filters=list_filters_out,
|
380
|
-
)
|
381
|
-
return response_body
|
344
|
+
return response
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "fractal-server"
|
3
|
-
version = "2.14.
|
3
|
+
version = "2.14.0a9"
|
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
|
markers = ["container", "ssh"]
|
96
96
|
|
97
97
|
[tool.bumpver]
|
98
|
-
current_version = "2.14.
|
98
|
+
current_version = "2.14.0a9"
|
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.14.0a8"
|
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.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/models/linkusergroup.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/models/linkuserproject.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/models/user_settings.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/models/v2/__init__.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/models/v2/accounting.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/models/v2/task_group.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/models/v2/workflow.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/models/v2/workflowtask.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/admin/__init__.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/admin/v2/__init__.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/admin/v2/accounting.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/admin/v2/job.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/admin/v2/project.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/admin/v2/task.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/admin/v2/task_group.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/__init__.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/dataset.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/history.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/images.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/project.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/submit.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/task.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/task_group.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/api/v2/workflowtask.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/auth/__init__.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/auth/_aux_auth.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/auth/current_user.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/auth/register.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/auth/router.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/routes/aux/__init__.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/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.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/compress_folder.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/extract_archive.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/run_subprocess.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/v2/__init__.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/v2/_db_tools.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/v2/_slurm_ssh.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/v2/_slurm_sudo.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/v2/deduplicate_list.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/v2/merge_outputs.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/v2/runner_functions.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/runner/v2/task_interface.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/_filter_validators.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/_validators.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/user_group.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/user_settings.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/v2/__init__.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/v2/accounting.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/v2/dataset.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/v2/history.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/v2/manifest.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/v2/project.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/v2/status_legacy.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/v2/task_collection.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/v2/task_group.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/v2/workflow.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/schemas/v2/workflowtask.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/app/security/signup_email.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/data_migrations/README.md
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
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/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
|
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.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/local/__init__.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/local/collect.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/local/deactivate.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/local/reactivate.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/ssh/deactivate.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/ssh/reactivate.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/templates/4_pip_show.sh
RENAMED
File without changes
|
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/utils_background.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/utils_database.py
RENAMED
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/utils_package_names.py
RENAMED
File without changes
|
File without changes
|
{fractal_server-2.14.0a8 → fractal_server-2.14.0a9}/fractal_server/tasks/v2/utils_templates.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|