thestage 0.5.49__tar.gz → 0.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.
- {thestage-0.5.49 → thestage-0.6.1}/PKG-INFO +1 -1
- {thestage-0.5.49 → thestage-0.6.1}/pyproject.toml +1 -1
- {thestage-0.5.49 → thestage-0.6.1}/thestage/__init__.py +1 -1
- {thestage-0.5.49 → thestage-0.6.1}/thestage/controllers/project_controller.py +6 -6
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/project/project_service.py +3 -3
- {thestage-0.5.49 → thestage-0.6.1}/LICENSE.txt +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/README.md +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/.env +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/__main__.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/cli_command.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/cli_command_helper.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/color_scheme/color_scheme.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/config/__init__.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/config/config_storage.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/config/env_base.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/controllers/__init__.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/controllers/base_controller.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/controllers/config_controller.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/controllers/container_controller.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/controllers/instance_controller.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/controllers/utils_controller.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/debug_main.dist.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/entities/__init__.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/entities/container.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/entities/enums/__init__.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/entities/enums/order_direction_type.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/entities/enums/shell_type.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/entities/enums/tail_output_type.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/entities/enums/yes_no_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/entities/file_item.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/entities/project_inference_simulator.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/entities/project_inference_simulator_model.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/entities/project_task.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/entities/rented_instance.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/entities/self_hosted_instance.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/exceptions/__init__.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/exceptions/auth_exception.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/exceptions/base_exception.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/exceptions/business_logic_exception.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/exceptions/config_exception.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/exceptions/file_system_exception.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/exceptions/git_access_exception.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/exceptions/remote_server_exception.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/git/ProgressPrinter.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/helpers/__init__.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/helpers/error_handler.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/helpers/exception_hook.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/helpers/logger/__init__.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/helpers/logger/app_logger.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/helpers/ssh_util.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/i18n/en_GB/messages.po +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/i18n/translation.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/main.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/.env +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/__init__.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/abstract_mapper.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/abstract_service.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/app_config_service.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/__init__.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/git/__init__.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/git/git_client.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/__init__.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/api_client.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/core/api_client_core.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/core/http_client_exception.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/__init__.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/base_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/cloud_provider_region.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/container_param_request.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/container_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/docker_container_assigned_device.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/docker_container_controller/docker_container_list_request.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/docker_container_controller/docker_container_list_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/docker_container_mapping.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/entity_filter_request.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/__init__.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/container_pending_action.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/container_status.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/cpu_type.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/currency_type.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/daemon_status.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/disk_type.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/drive_type.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/gpu_name.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/inference_model_status.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/inference_simulator_status.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/instance_rented_status.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/instance_type.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/location_region.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/power_status.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/provider_name.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/selfhosted_status.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/task_execution_status.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/task_status.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/frontend_status.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_instance_request.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_instance_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_sagemaker_request.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_sagemaker_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/inference_controller/get_inference_simulator_request.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/inference_controller/get_inference_simulator_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/inference_controller/inference_simulator_list_for_project_request.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/inference_controller/inference_simulator_list_for_project_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/inference_controller/inference_simulator_model_list_for_project_request.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/inference_controller/inference_simulator_model_list_for_project_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/inference_simulator_model_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/inference_simulator_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/installed_service.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/instance_detected_gpus.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/instance_rented_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/logging_controller/docker_container_log_stream_request.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/logging_controller/log_polling_request.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/logging_controller/log_polling_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/logging_controller/task_log_stream_request.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/logging_controller/user_logs_query_request.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/logging_controller/user_logs_query_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/paginated_entity_list.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/pagination_data.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/price_definition.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/project_controller/project_get_deploy_ssh_key_request.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/project_controller/project_get_deploy_ssh_key_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/project_controller/project_push_inference_simulator_model_request.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/project_controller/project_push_inference_simulator_model_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/project_controller/project_run_task_request.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/project_controller/project_run_task_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/project_controller/project_start_inference_simulator_request.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/project_controller/project_start_inference_simulator_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/project_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/selfhosted_instance_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/sftp_path_helper.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/ssh_key_controller/add_ssh_key_to_user_request.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/ssh_key_controller/add_ssh_key_to_user_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/ssh_key_controller/add_ssh_public_key_to_instance_request.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/ssh_key_controller/add_ssh_public_key_to_instance_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/ssh_key_controller/is_user_has_public_ssh_key_request.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/ssh_key_controller/is_user_has_public_ssh_key_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/task_controller/task_list_for_project_request.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/task_controller/task_list_for_project_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/task_controller/task_status_localized_map_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/task_controller/task_view_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/user_controller/user_profile.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/validate_token_response.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/config_provider/__init__.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/config_provider/config_provider.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/connect/connect_service.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/connect/dto/remote_server_config.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/container/__init__.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/container/container_service.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/container/mapper/__init__.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/container/mapper/container_mapper.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/core_files/config_entity.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/filesystem_service.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/instance/__init__.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/instance/instance_service.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/instance/mapper/__init__.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/instance/mapper/instance_mapper.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/instance/mapper/selfhosted_mapper.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/logging/byte_print_style.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/logging/dto/log_message.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/logging/dto/log_type.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/logging/exception/log_polling_exception.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/logging/logging_constants.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/logging/logging_service.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/project/__init__.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/project/dto/inference_simulator_dto.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/project/dto/inference_simulator_model_dto.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/project/dto/project_config.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/project/mapper/__init__.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/project/mapper/project_inference_simulator_mapper.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/project/mapper/project_inference_simulator_model_mapper.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/project/mapper/project_task_mapper.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/remote_server_service.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/service_factory.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/task/dto/task_dto.py +0 -0
- {thestage-0.5.49 → thestage-0.6.1}/thestage/services/validation_service.py +0 -0
|
@@ -135,8 +135,8 @@ def run(
|
|
|
135
135
|
),
|
|
136
136
|
files_to_add: Optional[str] = typer.Option(
|
|
137
137
|
None,
|
|
138
|
-
"--files-
|
|
139
|
-
"-
|
|
138
|
+
"--files-add",
|
|
139
|
+
"-fa",
|
|
140
140
|
help=__("Files to add to the commit. You can add files by their relative path from the working directory with a comma as a separator. Use '.' to add all files."),
|
|
141
141
|
is_eager=False,
|
|
142
142
|
),
|
|
@@ -267,8 +267,8 @@ def checkout_project(
|
|
|
267
267
|
),
|
|
268
268
|
files_to_add: Optional[str] = typer.Option(
|
|
269
269
|
None,
|
|
270
|
-
"--files-
|
|
271
|
-
"-
|
|
270
|
+
"--files-add",
|
|
271
|
+
"-fa",
|
|
272
272
|
help=__("Files to add to the commit. You can add files by their relative path from the working directory with a comma as a separator. Use '.' to add all files."),
|
|
273
273
|
is_eager=False,
|
|
274
274
|
),
|
|
@@ -455,8 +455,8 @@ def run_inference_simulator(
|
|
|
455
455
|
),
|
|
456
456
|
files_to_add: Optional[str] = typer.Option(
|
|
457
457
|
None,
|
|
458
|
-
"--files-
|
|
459
|
-
"-
|
|
458
|
+
"--files-add",
|
|
459
|
+
"-fa",
|
|
460
460
|
help=__("Files to add to the commit. You can add files by their relative path from the working directory with a comma as a separator. Use '.' to add all files."),
|
|
461
461
|
is_eager=False,
|
|
462
462
|
),
|
|
@@ -289,7 +289,7 @@ class ProjectService(AbstractService):
|
|
|
289
289
|
)
|
|
290
290
|
|
|
291
291
|
if not files_to_add and has_changes:
|
|
292
|
-
print(f"[{ColorScheme.USEFUL_INFO.value}]Uncommitted changes detected, but the command is being run without adding these files. If you want to include these changes in the task, use the -
|
|
292
|
+
print(f"[{ColorScheme.USEFUL_INFO.value}]Uncommitted changes detected, but the command is being run without adding these files. If you want to include these changes in the task, use the -fa flag (e.g., -fa .)[{ColorScheme.USEFUL_INFO.value}]")
|
|
293
293
|
|
|
294
294
|
if files_to_add:
|
|
295
295
|
is_git_folder = self.__git_local_client.is_present_local_git(path=config.runtime.working_directory)
|
|
@@ -458,7 +458,7 @@ class ProjectService(AbstractService):
|
|
|
458
458
|
)
|
|
459
459
|
|
|
460
460
|
if not files_to_add and has_changes:
|
|
461
|
-
print(f"[{ColorScheme.USEFUL_INFO.value}]Uncommitted changes detected, but the command is being run without adding these files. If you want to include these changes in the inference simulator, use the -
|
|
461
|
+
print(f"[{ColorScheme.USEFUL_INFO.value}]Uncommitted changes detected, but the command is being run without adding these files. If you want to include these changes in the inference simulator, use the -fa flag (e.g., -fa .)[{ColorScheme.USEFUL_INFO.value}]")
|
|
462
462
|
|
|
463
463
|
if files_to_add:
|
|
464
464
|
is_git_folder = self.__git_local_client.is_present_local_git(path=config.runtime.working_directory)
|
|
@@ -747,7 +747,7 @@ class ProjectService(AbstractService):
|
|
|
747
747
|
)
|
|
748
748
|
|
|
749
749
|
if not files_to_add and has_changes:
|
|
750
|
-
print(f"[{ColorScheme.WARNING.value}][WARNING] Uncommitted changes detected, cannot checkout with uncommitted changes. You should use the -
|
|
750
|
+
print(f"[{ColorScheme.WARNING.value}][WARNING] Uncommitted changes detected, cannot checkout with uncommitted changes. You should use the -fa flag (e.g., -fa .)[{ColorScheme.WARNING.value}]")
|
|
751
751
|
raise typer.Exit(1)
|
|
752
752
|
|
|
753
753
|
if is_commit_allowed and has_changes and files_to_add:
|
|
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
|
|
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
|
{thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/core/api_client_core.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/base_response.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/container_response.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/cpu_type.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/disk_type.py
RENAMED
|
File without changes
|
{thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/drive_type.py
RENAMED
|
File without changes
|
{thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/gpu_name.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/power_status.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/enums/task_status.py
RENAMED
|
File without changes
|
{thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/frontend_status.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
|
{thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/installed_service.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
|
{thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/pagination_data.py
RENAMED
|
File without changes
|
{thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/price_definition.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
|
{thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/project_response.py
RENAMED
|
File without changes
|
|
File without changes
|
{thestage-0.5.49 → thestage-0.6.1}/thestage/services/clients/thestage_api/dtos/sftp_path_helper.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
|
{thestage-0.5.49 → thestage-0.6.1}/thestage/services/logging/exception/log_polling_exception.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{thestage-0.5.49 → thestage-0.6.1}/thestage/services/project/dto/inference_simulator_model_dto.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
|