prefect-client 2.20.5__tar.gz → 2.20.6__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.
- {prefect_client-2.20.5/src/prefect_client.egg-info → prefect-client-2.20.6}/PKG-INFO +2 -40
- {prefect_client-2.20.5 → prefect-client-2.20.6/src/prefect_client.egg-info}/PKG-INFO +2 -40
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect_client.egg-info/SOURCES.txt +1 -29
- prefect_client-2.20.5/src/prefect/_vendor/starlette/py.typed +0 -0
- prefect_client-2.20.5/src/prefect/py.typed +0 -0
- prefect_client-2.20.5/tests/test_artifacts.py +0 -484
- prefect_client-2.20.5/tests/test_automations.py +0 -186
- prefect_client-2.20.5/tests/test_background_tasks.py +0 -401
- prefect_client-2.20.5/tests/test_context.py +0 -396
- prefect_client-2.20.5/tests/test_deployments.py +0 -1632
- prefect_client-2.20.5/tests/test_engine.py +0 -3417
- prefect_client-2.20.5/tests/test_exceptions.py +0 -139
- prefect_client-2.20.5/tests/test_filesystems.py +0 -782
- prefect_client-2.20.5/tests/test_flow_runs.py +0 -40
- prefect_client-2.20.5/tests/test_flows.py +0 -4430
- prefect_client-2.20.5/tests/test_flows_compat.py +0 -30
- prefect_client-2.20.5/tests/test_futures.py +0 -215
- prefect_client-2.20.5/tests/test_highlighters.py +0 -69
- prefect_client-2.20.5/tests/test_import_interceptor.py +0 -7
- prefect_client-2.20.5/tests/test_log_prints.py +0 -240
- prefect_client-2.20.5/tests/test_logging.py +0 -1586
- prefect_client-2.20.5/tests/test_new_flow_engine.py +0 -866
- prefect_client-2.20.5/tests/test_new_task_engine.py +0 -868
- prefect_client-2.20.5/tests/test_plugins.py +0 -259
- prefect_client-2.20.5/tests/test_serializers.py +0 -368
- prefect_client-2.20.5/tests/test_settings.py +0 -1062
- prefect_client-2.20.5/tests/test_states.py +0 -374
- prefect_client-2.20.5/tests/test_task_runners.py +0 -34
- prefect_client-2.20.5/tests/test_task_server.py +0 -551
- prefect_client-2.20.5/tests/test_tasks.py +0 -4319
- prefect_client-2.20.5/tests/test_variables.py +0 -94
- {prefect_client-2.20.5 → prefect-client-2.20.6}/LICENSE +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/MANIFEST.in +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/README.md +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/requirements-client.txt +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/requirements-dev.txt +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/requirements.txt +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/setup.cfg +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/setup.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/.prefectignore +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/_logging.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/compatibility/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/compatibility/deprecated.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/compatibility/experimental.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/concurrency/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/concurrency/api.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/concurrency/calls.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/concurrency/cancellation.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/concurrency/event_loop.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/concurrency/inspection.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/concurrency/primitives.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/concurrency/services.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/concurrency/threads.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/concurrency/waiters.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/integrations.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/_base_model.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/_compat.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/_flags.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/_types.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/annotations/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/annotations/pendulum.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/schemas.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/utilities/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/utilities/config_dict.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/utilities/field_validator.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/utilities/model_construct.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/utilities/model_copy.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/utilities/model_dump.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/utilities/model_dump_json.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/utilities/model_fields.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/utilities/model_fields_set.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/utilities/model_json_schema.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/utilities/model_rebuild.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/utilities/model_validate.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/utilities/model_validate_json.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/utilities/model_validator.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/utilities/type_adapter.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/v1_schema.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/v2_schema.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pydantic/v2_validated_func.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/pytz.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/schemas/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/schemas/bases.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/schemas/fields.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/schemas/serializers.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_internal/schemas/validators.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/applications.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/background.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/concurrency.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/datastructures.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/dependencies/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/dependencies/models.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/dependencies/utils.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/encoders.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/exception_handlers.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/exceptions.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/logger.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/middleware/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/middleware/asyncexitstack.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/middleware/cors.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/middleware/gzip.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/middleware/httpsredirect.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/middleware/trustedhost.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/middleware/wsgi.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/openapi/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/openapi/constants.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/openapi/docs.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/openapi/models.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/openapi/utils.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/param_functions.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/params.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/requests.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/responses.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/routing.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/security/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/security/api_key.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/security/base.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/security/http.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/security/oauth2.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/security/open_id_connect_url.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/security/utils.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/staticfiles.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/templating.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/testclient.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/types.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/utils.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/fastapi/websockets.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/_compat.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/_exception_handler.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/_utils.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/applications.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/authentication.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/background.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/concurrency.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/config.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/convertors.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/datastructures.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/endpoints.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/exceptions.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/formparsers.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/middleware/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/middleware/authentication.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/middleware/base.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/middleware/cors.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/middleware/errors.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/middleware/exceptions.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/middleware/gzip.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/middleware/httpsredirect.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/middleware/sessions.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/middleware/trustedhost.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/middleware/wsgi.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/requests.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/responses.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/routing.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/schemas.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/staticfiles.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/status.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/templating.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/testclient.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/types.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_vendor/starlette/websockets.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/_version.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/agent.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/artifacts.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/automations.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/blocks/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/blocks/abstract.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/blocks/core.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/blocks/fields.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/blocks/kubernetes.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/blocks/notifications.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/blocks/system.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/blocks/webhook.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/client/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/client/base.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/client/cloud.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/client/collections.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/client/constants.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/client/orchestration.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/client/schemas/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/client/schemas/actions.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/client/schemas/filters.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/client/schemas/objects.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/client/schemas/responses.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/client/schemas/schedules.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/client/schemas/sorting.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/client/subscriptions.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/client/utilities.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/concurrency/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/concurrency/asyncio.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/concurrency/events.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/concurrency/services.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/concurrency/sync.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/context.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/deployments/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/deployments/base.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/deployments/deployments.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/deployments/runner.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/deployments/schedules.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/deployments/steps/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/deployments/steps/core.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/deployments/steps/pull.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/deployments/steps/utility.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/deprecated/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/deprecated/data_documents.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/deprecated/packaging/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/deprecated/packaging/base.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/deprecated/packaging/docker.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/deprecated/packaging/file.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/deprecated/packaging/orion.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/deprecated/packaging/serializers.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/engine.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/events/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/events/actions.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/events/cli/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/events/cli/automations.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/events/clients.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/events/filters.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/events/instrument.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/events/related.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/events/schemas/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/events/schemas/automations.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/events/schemas/deployment_triggers.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/events/schemas/events.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/events/schemas/labelling.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/events/utilities.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/events/worker.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/exceptions.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/filesystems.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/flow_runs.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/flows.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/futures.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/infrastructure/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/infrastructure/base.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/infrastructure/container.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/infrastructure/kubernetes.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/infrastructure/process.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/infrastructure/provisioners/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/infrastructure/provisioners/cloud_run.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/infrastructure/provisioners/container_instance.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/infrastructure/provisioners/ecs.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/infrastructure/provisioners/modal.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/input/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/input/actions.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/input/run_input.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/logging/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/logging/configuration.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/logging/filters.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/logging/formatters.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/logging/handlers.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/logging/highlighters.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/logging/loggers.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/logging/logging.yml +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/manifests.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/new_flow_engine.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/new_task_engine.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/plugins.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/profiles.toml +0 -0
- {prefect_client-2.20.5/src/prefect/_vendor/fastapi → prefect-client-2.20.6/src/prefect}/py.typed +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/pydantic/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/pydantic/main.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/results.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/runner/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/runner/runner.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/runner/server.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/runner/storage.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/runner/submit.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/runner/utils.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/runtime/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/runtime/deployment.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/runtime/flow_run.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/runtime/task_run.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/serializers.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/server/api/collections_data/views/aggregate-worker-metadata.json +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/server/api/static/prefect-logo-mark-gradient.png +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/settings.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/software/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/software/base.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/software/conda.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/software/pip.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/software/python.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/states.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/task_engine.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/task_runners.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/task_server.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/tasks.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/types/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/annotations.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/asyncutils.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/callables.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/collections.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/compat.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/context.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/dispatch.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/dockerutils.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/engine.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/filesystem.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/hashing.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/importtools.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/math.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/names.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/processutils.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/pydantic.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/render_swagger.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/schema_tools/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/schema_tools/hydration.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/schema_tools/validation.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/services.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/slugify.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/templating.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/text.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/timeout.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/utilities/visualization.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/variables.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/workers/__init__.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/workers/base.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/workers/block.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/workers/process.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/workers/server.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect/workers/utilities.py +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect_client.egg-info/dependency_links.txt +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect_client.egg-info/requires.txt +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/src/prefect_client.egg-info/top_level.txt +0 -0
- {prefect_client-2.20.5 → prefect-client-2.20.6}/versioneer.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: prefect-client
|
3
|
-
Version: 2.20.
|
3
|
+
Version: 2.20.6
|
4
4
|
Summary: Workflow orchestration and management.
|
5
5
|
Home-page: https://www.prefect.io
|
6
6
|
Author: Prefect Technologies, Inc.
|
@@ -21,46 +21,8 @@ Classifier: Programming Language :: Python :: 3.11
|
|
21
21
|
Classifier: Topic :: Software Development :: Libraries
|
22
22
|
Requires-Python: >=3.8
|
23
23
|
Description-Content-Type: text/markdown
|
24
|
-
License-File: LICENSE
|
25
|
-
Requires-Dist: anyio<5.0.0,>=4.4.0
|
26
|
-
Requires-Dist: asgi-lifespan<3.0,>=1.0
|
27
|
-
Requires-Dist: cachetools<6.0,>=5.3
|
28
|
-
Requires-Dist: cloudpickle<4.0,>=2.0
|
29
|
-
Requires-Dist: coolname<3.0.0,>=1.0.4
|
30
|
-
Requires-Dist: croniter<3.0.0,>=1.0.12
|
31
|
-
Requires-Dist: fsspec>=2022.5.0
|
32
|
-
Requires-Dist: exceptiongroup>=1.2.1
|
33
|
-
Requires-Dist: graphviz>=0.20.1
|
34
|
-
Requires-Dist: griffe<2.0.0,>=0.49.0
|
35
|
-
Requires-Dist: httpcore<2.0.0,>=1.0.5
|
36
|
-
Requires-Dist: httpx[http2]!=0.23.2,>=0.23
|
37
|
-
Requires-Dist: importlib_metadata>=4.4; python_version < "3.10"
|
38
|
-
Requires-Dist: importlib-resources<6.5.0,>=6.1.3
|
39
|
-
Requires-Dist: jsonpatch<2.0,>=1.32
|
40
|
-
Requires-Dist: jsonschema<5.0.0,>=4.0.0
|
41
|
-
Requires-Dist: orjson<4.0,>=3.7
|
42
|
-
Requires-Dist: packaging<24.3,>=21.3
|
43
|
-
Requires-Dist: pathspec>=0.8.0
|
44
|
-
Requires-Dist: pendulum<3.0; python_version < "3.12"
|
45
|
-
Requires-Dist: pendulum<4,>=3.0.0; python_version >= "3.12"
|
46
|
-
Requires-Dist: pydantic[email]!=2.0.0,!=2.0.1,!=2.1.0,<3.0.0,>=1.10.0
|
47
|
-
Requires-Dist: pydantic_core<3.0.0,>=2.12.0
|
48
|
-
Requires-Dist: python_dateutil<3.0.0,>=2.8.2
|
49
|
-
Requires-Dist: python-slugify<9.0,>=5.0
|
50
|
-
Requires-Dist: pyyaml<7.0.0,>=5.4.1
|
51
|
-
Requires-Dist: rfc3339-validator<0.2.0,>=0.1.4
|
52
|
-
Requires-Dist: rich<14.0,>=11.0
|
53
|
-
Requires-Dist: ruamel.yaml>=0.17.0
|
54
|
-
Requires-Dist: sniffio<2.0.0,>=1.3.0
|
55
|
-
Requires-Dist: toml>=0.10.0
|
56
|
-
Requires-Dist: typing_extensions<5.0.0,>=4.5.0
|
57
|
-
Requires-Dist: ujson<6.0.0,>=5.8.0
|
58
|
-
Requires-Dist: uvicorn!=0.29.0,>=0.14.0
|
59
|
-
Requires-Dist: websockets<14.0,>=10.4
|
60
|
-
Requires-Dist: itsdangerous
|
61
|
-
Requires-Dist: python-multipart>=0.0.7
|
62
24
|
Provides-Extra: notifications
|
63
|
-
|
25
|
+
License-File: LICENSE
|
64
26
|
|
65
27
|
<p align="center"><img src="https://github.com/PrefectHQ/prefect/assets/3407835/c654cbc6-63e8-4ada-a92a-efd2f8f24b85" width=1000></p>
|
66
28
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: prefect-client
|
3
|
-
Version: 2.20.
|
3
|
+
Version: 2.20.6
|
4
4
|
Summary: Workflow orchestration and management.
|
5
5
|
Home-page: https://www.prefect.io
|
6
6
|
Author: Prefect Technologies, Inc.
|
@@ -21,46 +21,8 @@ Classifier: Programming Language :: Python :: 3.11
|
|
21
21
|
Classifier: Topic :: Software Development :: Libraries
|
22
22
|
Requires-Python: >=3.8
|
23
23
|
Description-Content-Type: text/markdown
|
24
|
-
License-File: LICENSE
|
25
|
-
Requires-Dist: anyio<5.0.0,>=4.4.0
|
26
|
-
Requires-Dist: asgi-lifespan<3.0,>=1.0
|
27
|
-
Requires-Dist: cachetools<6.0,>=5.3
|
28
|
-
Requires-Dist: cloudpickle<4.0,>=2.0
|
29
|
-
Requires-Dist: coolname<3.0.0,>=1.0.4
|
30
|
-
Requires-Dist: croniter<3.0.0,>=1.0.12
|
31
|
-
Requires-Dist: fsspec>=2022.5.0
|
32
|
-
Requires-Dist: exceptiongroup>=1.2.1
|
33
|
-
Requires-Dist: graphviz>=0.20.1
|
34
|
-
Requires-Dist: griffe<2.0.0,>=0.49.0
|
35
|
-
Requires-Dist: httpcore<2.0.0,>=1.0.5
|
36
|
-
Requires-Dist: httpx[http2]!=0.23.2,>=0.23
|
37
|
-
Requires-Dist: importlib_metadata>=4.4; python_version < "3.10"
|
38
|
-
Requires-Dist: importlib-resources<6.5.0,>=6.1.3
|
39
|
-
Requires-Dist: jsonpatch<2.0,>=1.32
|
40
|
-
Requires-Dist: jsonschema<5.0.0,>=4.0.0
|
41
|
-
Requires-Dist: orjson<4.0,>=3.7
|
42
|
-
Requires-Dist: packaging<24.3,>=21.3
|
43
|
-
Requires-Dist: pathspec>=0.8.0
|
44
|
-
Requires-Dist: pendulum<3.0; python_version < "3.12"
|
45
|
-
Requires-Dist: pendulum<4,>=3.0.0; python_version >= "3.12"
|
46
|
-
Requires-Dist: pydantic[email]!=2.0.0,!=2.0.1,!=2.1.0,<3.0.0,>=1.10.0
|
47
|
-
Requires-Dist: pydantic_core<3.0.0,>=2.12.0
|
48
|
-
Requires-Dist: python_dateutil<3.0.0,>=2.8.2
|
49
|
-
Requires-Dist: python-slugify<9.0,>=5.0
|
50
|
-
Requires-Dist: pyyaml<7.0.0,>=5.4.1
|
51
|
-
Requires-Dist: rfc3339-validator<0.2.0,>=0.1.4
|
52
|
-
Requires-Dist: rich<14.0,>=11.0
|
53
|
-
Requires-Dist: ruamel.yaml>=0.17.0
|
54
|
-
Requires-Dist: sniffio<2.0.0,>=1.3.0
|
55
|
-
Requires-Dist: toml>=0.10.0
|
56
|
-
Requires-Dist: typing_extensions<5.0.0,>=4.5.0
|
57
|
-
Requires-Dist: ujson<6.0.0,>=5.8.0
|
58
|
-
Requires-Dist: uvicorn!=0.29.0,>=0.14.0
|
59
|
-
Requires-Dist: websockets<14.0,>=10.4
|
60
|
-
Requires-Dist: itsdangerous
|
61
|
-
Requires-Dist: python-multipart>=0.0.7
|
62
24
|
Provides-Extra: notifications
|
63
|
-
|
25
|
+
License-File: LICENSE
|
64
26
|
|
65
27
|
<p align="center"><img src="https://github.com/PrefectHQ/prefect/assets/3407835/c654cbc6-63e8-4ada-a92a-efd2f8f24b85" width=1000></p>
|
66
28
|
|
@@ -95,7 +95,6 @@ src/prefect/_vendor/fastapi/exceptions.py
|
|
95
95
|
src/prefect/_vendor/fastapi/logger.py
|
96
96
|
src/prefect/_vendor/fastapi/param_functions.py
|
97
97
|
src/prefect/_vendor/fastapi/params.py
|
98
|
-
src/prefect/_vendor/fastapi/py.typed
|
99
98
|
src/prefect/_vendor/fastapi/requests.py
|
100
99
|
src/prefect/_vendor/fastapi/responses.py
|
101
100
|
src/prefect/_vendor/fastapi/routing.py
|
@@ -141,7 +140,6 @@ src/prefect/_vendor/starlette/datastructures.py
|
|
141
140
|
src/prefect/_vendor/starlette/endpoints.py
|
142
141
|
src/prefect/_vendor/starlette/exceptions.py
|
143
142
|
src/prefect/_vendor/starlette/formparsers.py
|
144
|
-
src/prefect/_vendor/starlette/py.typed
|
145
143
|
src/prefect/_vendor/starlette/requests.py
|
146
144
|
src/prefect/_vendor/starlette/responses.py
|
147
145
|
src/prefect/_vendor/starlette/routing.py
|
@@ -301,30 +299,4 @@ src/prefect_client.egg-info/PKG-INFO
|
|
301
299
|
src/prefect_client.egg-info/SOURCES.txt
|
302
300
|
src/prefect_client.egg-info/dependency_links.txt
|
303
301
|
src/prefect_client.egg-info/requires.txt
|
304
|
-
src/prefect_client.egg-info/top_level.txt
|
305
|
-
tests/test_artifacts.py
|
306
|
-
tests/test_automations.py
|
307
|
-
tests/test_background_tasks.py
|
308
|
-
tests/test_context.py
|
309
|
-
tests/test_deployments.py
|
310
|
-
tests/test_engine.py
|
311
|
-
tests/test_exceptions.py
|
312
|
-
tests/test_filesystems.py
|
313
|
-
tests/test_flow_runs.py
|
314
|
-
tests/test_flows.py
|
315
|
-
tests/test_flows_compat.py
|
316
|
-
tests/test_futures.py
|
317
|
-
tests/test_highlighters.py
|
318
|
-
tests/test_import_interceptor.py
|
319
|
-
tests/test_log_prints.py
|
320
|
-
tests/test_logging.py
|
321
|
-
tests/test_new_flow_engine.py
|
322
|
-
tests/test_new_task_engine.py
|
323
|
-
tests/test_plugins.py
|
324
|
-
tests/test_serializers.py
|
325
|
-
tests/test_settings.py
|
326
|
-
tests/test_states.py
|
327
|
-
tests/test_task_runners.py
|
328
|
-
tests/test_task_server.py
|
329
|
-
tests/test_tasks.py
|
330
|
-
tests/test_variables.py
|
302
|
+
src/prefect_client.egg-info/top_level.txt
|
File without changes
|
File without changes
|
@@ -1,484 +0,0 @@
|
|
1
|
-
import json
|
2
|
-
from typing import List
|
3
|
-
|
4
|
-
from prefect._internal.pydantic import HAS_PYDANTIC_V2
|
5
|
-
|
6
|
-
if HAS_PYDANTIC_V2:
|
7
|
-
import pydantic.v1 as pydantic
|
8
|
-
else:
|
9
|
-
import pydantic
|
10
|
-
|
11
|
-
import pytest
|
12
|
-
|
13
|
-
from prefect import flow, task
|
14
|
-
from prefect.artifacts import (
|
15
|
-
create_link_artifact,
|
16
|
-
create_markdown_artifact,
|
17
|
-
create_table_artifact,
|
18
|
-
)
|
19
|
-
from prefect.context import get_run_context
|
20
|
-
from prefect.server import schemas
|
21
|
-
from prefect.server.schemas.actions import ArtifactCreate
|
22
|
-
|
23
|
-
|
24
|
-
class TestCreateArtifacts:
|
25
|
-
@pytest.fixture
|
26
|
-
async def artifact(self):
|
27
|
-
yield ArtifactCreate(
|
28
|
-
key="voltaic",
|
29
|
-
data=1,
|
30
|
-
description="# This is a markdown description title",
|
31
|
-
)
|
32
|
-
|
33
|
-
async def test_create_and_read_link_artifact_succeeds(self, artifact, client):
|
34
|
-
my_link = "prefect.io"
|
35
|
-
artifact_id = await create_link_artifact(
|
36
|
-
key=artifact.key,
|
37
|
-
link=my_link,
|
38
|
-
description=artifact.description,
|
39
|
-
)
|
40
|
-
|
41
|
-
response = await client.get(f"/artifacts/{artifact_id}")
|
42
|
-
result = pydantic.parse_obj_as(schemas.core.Artifact, response.json())
|
43
|
-
assert result.data == f"[{my_link}]({my_link})"
|
44
|
-
|
45
|
-
async def test_create_and_read_link_artifact_with_linktext_succeeds(
|
46
|
-
self, artifact, client
|
47
|
-
):
|
48
|
-
my_link = "prefect.io"
|
49
|
-
link_text = "Prefect"
|
50
|
-
artifact_id = await create_link_artifact(
|
51
|
-
key=artifact.key,
|
52
|
-
link=my_link,
|
53
|
-
link_text=link_text,
|
54
|
-
description=artifact.description,
|
55
|
-
)
|
56
|
-
|
57
|
-
response = await client.get(f"/artifacts/{artifact_id}")
|
58
|
-
result = pydantic.parse_obj_as(schemas.core.Artifact, response.json())
|
59
|
-
assert result.data == f"[{link_text}]({my_link})"
|
60
|
-
|
61
|
-
async def test_create_link_artifact_in_task_succeeds(self, client):
|
62
|
-
@task
|
63
|
-
def my_special_task():
|
64
|
-
task_run_id = get_run_context().task_run.id
|
65
|
-
artifact_id = create_link_artifact(
|
66
|
-
key="task-link-artifact-3",
|
67
|
-
link="google.com",
|
68
|
-
description="my-artifact-description",
|
69
|
-
)
|
70
|
-
return artifact_id, task_run_id
|
71
|
-
|
72
|
-
@flow
|
73
|
-
def my_flow():
|
74
|
-
flow_run_id = get_run_context().flow_run.id
|
75
|
-
artifact_id, task_run_id = my_special_task()
|
76
|
-
|
77
|
-
return artifact_id, flow_run_id, task_run_id
|
78
|
-
|
79
|
-
my_artifact_id, flow_run_id, task_run_id = my_flow()
|
80
|
-
|
81
|
-
response = await client.get(f"/artifacts/{my_artifact_id}")
|
82
|
-
my_link_artifact = pydantic.parse_obj_as(schemas.core.Artifact, response.json())
|
83
|
-
|
84
|
-
assert my_link_artifact.flow_run_id == flow_run_id
|
85
|
-
assert my_link_artifact.task_run_id == task_run_id
|
86
|
-
|
87
|
-
async def test_create_link_artifact_in_flow_succeeds(self, client):
|
88
|
-
@flow
|
89
|
-
def my_flow():
|
90
|
-
flow_run_id = get_run_context().flow_run.id
|
91
|
-
|
92
|
-
artifact_id = create_link_artifact(
|
93
|
-
key="task-link-artifact-4",
|
94
|
-
link="google.com",
|
95
|
-
description="my-artifact-description",
|
96
|
-
)
|
97
|
-
|
98
|
-
return artifact_id, flow_run_id
|
99
|
-
|
100
|
-
my_artifact_id, flow_run_id = my_flow()
|
101
|
-
|
102
|
-
response = await client.get(f"/artifacts/{my_artifact_id}")
|
103
|
-
my_link_artifact = pydantic.parse_obj_as(schemas.core.Artifact, response.json())
|
104
|
-
|
105
|
-
assert my_link_artifact.flow_run_id == flow_run_id
|
106
|
-
assert my_link_artifact.task_run_id is None
|
107
|
-
|
108
|
-
async def test_create_link_artifact_in_subflow_succeeds(self, client):
|
109
|
-
@flow
|
110
|
-
def my_subflow():
|
111
|
-
flow_run_id = get_run_context().flow_run.id
|
112
|
-
artifact_id = create_link_artifact(
|
113
|
-
key="task-link-artifact-5",
|
114
|
-
link="google.com",
|
115
|
-
description="my-artifact-description",
|
116
|
-
)
|
117
|
-
|
118
|
-
return artifact_id, flow_run_id
|
119
|
-
|
120
|
-
@flow
|
121
|
-
def my_flow():
|
122
|
-
artifact_id, flow_run_id = my_subflow()
|
123
|
-
|
124
|
-
return artifact_id, flow_run_id
|
125
|
-
|
126
|
-
my_artifact_id, flow_run_id = my_flow()
|
127
|
-
|
128
|
-
response = await client.get(f"/artifacts/{my_artifact_id}")
|
129
|
-
my_link_artifact = pydantic.parse_obj_as(schemas.core.Artifact, response.json())
|
130
|
-
|
131
|
-
assert my_link_artifact.flow_run_id == flow_run_id
|
132
|
-
assert my_link_artifact.task_run_id is None
|
133
|
-
|
134
|
-
async def test_create_link_artifact_using_map_succeeds(self):
|
135
|
-
"""
|
136
|
-
Test that we can create a markdown artifact using map.
|
137
|
-
"""
|
138
|
-
|
139
|
-
# An ode to prefect issue #5309.
|
140
|
-
@task
|
141
|
-
def add_ten(x):
|
142
|
-
create_link_artifact(
|
143
|
-
# TODO: uncomment this out once unique constraint is dropped on artifact key
|
144
|
-
# key="new-markdown-artifact",
|
145
|
-
link="s3://my-bucket/my-file",
|
146
|
-
description="my-artifact-description",
|
147
|
-
)
|
148
|
-
return x + 10
|
149
|
-
|
150
|
-
@flow
|
151
|
-
def simple_map(nums: List[int]):
|
152
|
-
big_nums = add_ten.map(nums)
|
153
|
-
return [big_num.result() for big_num in big_nums]
|
154
|
-
|
155
|
-
my_big_nums = simple_map([1, 2, 3])
|
156
|
-
assert my_big_nums == [11, 12, 13]
|
157
|
-
|
158
|
-
async def test_create_and_read_markdown_artifact_succeeds(self, artifact, client):
|
159
|
-
my_markdown = "# This is a markdown description title"
|
160
|
-
artifact_id = await create_markdown_artifact(
|
161
|
-
key=artifact.key,
|
162
|
-
markdown=my_markdown,
|
163
|
-
description=artifact.description,
|
164
|
-
)
|
165
|
-
|
166
|
-
response = await client.get(f"/artifacts/{artifact_id}")
|
167
|
-
result = pydantic.parse_obj_as(schemas.core.Artifact, response.json())
|
168
|
-
assert result.data == my_markdown
|
169
|
-
|
170
|
-
async def test_create_markdown_artifact_in_task_succeeds(self, client):
|
171
|
-
@task
|
172
|
-
def my_special_task():
|
173
|
-
task_run_id = get_run_context().task_run.id
|
174
|
-
artifact_id = create_markdown_artifact(
|
175
|
-
key="task-link-artifact-3",
|
176
|
-
markdown="my markdown",
|
177
|
-
description="my-artifact-description",
|
178
|
-
)
|
179
|
-
return artifact_id, task_run_id
|
180
|
-
|
181
|
-
@flow
|
182
|
-
def my_flow():
|
183
|
-
flow_run_id = get_run_context().flow_run.id
|
184
|
-
artifact_id, task_run_id = my_special_task()
|
185
|
-
|
186
|
-
return artifact_id, flow_run_id, task_run_id
|
187
|
-
|
188
|
-
my_artifact_id, flow_run_id, task_run_id = my_flow()
|
189
|
-
|
190
|
-
response = await client.get(f"/artifacts/{my_artifact_id}")
|
191
|
-
my_markdown_artifact = pydantic.parse_obj_as(
|
192
|
-
schemas.core.Artifact, response.json()
|
193
|
-
)
|
194
|
-
|
195
|
-
assert my_markdown_artifact.flow_run_id == flow_run_id
|
196
|
-
assert my_markdown_artifact.task_run_id == task_run_id
|
197
|
-
|
198
|
-
async def test_create_markdown_artifact_in_flow_succeeds(self, client):
|
199
|
-
@flow
|
200
|
-
def my_flow():
|
201
|
-
flow_run_id = get_run_context().flow_run.id
|
202
|
-
|
203
|
-
artifact_id = create_markdown_artifact(
|
204
|
-
key="task-link-artifact-4",
|
205
|
-
markdown="my markdown",
|
206
|
-
description="my-artifact-description",
|
207
|
-
)
|
208
|
-
|
209
|
-
return artifact_id, flow_run_id
|
210
|
-
|
211
|
-
my_artifact_id, flow_run_id = my_flow()
|
212
|
-
|
213
|
-
response = await client.get(f"/artifacts/{my_artifact_id}")
|
214
|
-
my_markdown_artifact = pydantic.parse_obj_as(
|
215
|
-
schemas.core.Artifact, response.json()
|
216
|
-
)
|
217
|
-
|
218
|
-
assert my_markdown_artifact.flow_run_id == flow_run_id
|
219
|
-
assert my_markdown_artifact.task_run_id is None
|
220
|
-
|
221
|
-
async def test_create_markdown_artifact_in_subflow_succeeds(self, client):
|
222
|
-
@flow
|
223
|
-
def my_subflow():
|
224
|
-
flow_run_id = get_run_context().flow_run.id
|
225
|
-
artifact_id = create_markdown_artifact(
|
226
|
-
key="task-link-artifact-3",
|
227
|
-
markdown="my markdown",
|
228
|
-
description="my-artifact-description",
|
229
|
-
)
|
230
|
-
return artifact_id, flow_run_id
|
231
|
-
|
232
|
-
@flow
|
233
|
-
def my_flow():
|
234
|
-
artifact_id, flow_run_id = my_subflow()
|
235
|
-
|
236
|
-
return artifact_id, flow_run_id
|
237
|
-
|
238
|
-
my_artifact_id, flow_run_id = my_flow()
|
239
|
-
|
240
|
-
response = await client.get(f"/artifacts/{my_artifact_id}")
|
241
|
-
my_markdown_artifact = pydantic.parse_obj_as(
|
242
|
-
schemas.core.Artifact, response.json()
|
243
|
-
)
|
244
|
-
|
245
|
-
assert my_markdown_artifact.flow_run_id == flow_run_id
|
246
|
-
assert my_markdown_artifact.task_run_id is None
|
247
|
-
|
248
|
-
async def test_create_markdown_artifact_using_map_succeeds(self):
|
249
|
-
"""
|
250
|
-
Test that we can create a markdown artifact using map.
|
251
|
-
"""
|
252
|
-
|
253
|
-
@task
|
254
|
-
def add_ten(x):
|
255
|
-
create_markdown_artifact(
|
256
|
-
key="new-markdown-artifact",
|
257
|
-
markdown="my markdown",
|
258
|
-
description="my-artifact-description",
|
259
|
-
)
|
260
|
-
return x + 10
|
261
|
-
|
262
|
-
@flow
|
263
|
-
def simple_map(nums: List[int]):
|
264
|
-
big_nums = add_ten.map(nums)
|
265
|
-
return [big_num.result() for big_num in big_nums]
|
266
|
-
|
267
|
-
my_big_nums = simple_map([1, 2, 3])
|
268
|
-
assert my_big_nums == [11, 12, 13]
|
269
|
-
|
270
|
-
async def test_create_and_read_dict_of_list_table_artifact_succeeds(
|
271
|
-
self, artifact, client
|
272
|
-
):
|
273
|
-
my_table = {"a": [1, 3], "b": [2, 4]}
|
274
|
-
|
275
|
-
artifact_id = await create_table_artifact(
|
276
|
-
key=artifact.key,
|
277
|
-
table=my_table,
|
278
|
-
description=artifact.description,
|
279
|
-
)
|
280
|
-
|
281
|
-
response = await client.get(f"/artifacts/{artifact_id}")
|
282
|
-
result = pydantic.parse_obj_as(schemas.core.Artifact, response.json())
|
283
|
-
result_data = json.loads(result.data)
|
284
|
-
assert result_data == my_table
|
285
|
-
|
286
|
-
async def test_create_and_read_list_of_dict_table_artifact_succeeds(
|
287
|
-
self, artifact, client
|
288
|
-
):
|
289
|
-
my_table = [{"a": 1, "b": 2}, {"a": 3, "b": 4}]
|
290
|
-
|
291
|
-
artifact_id = await create_table_artifact(
|
292
|
-
key=artifact.key,
|
293
|
-
table=my_table,
|
294
|
-
description=artifact.description,
|
295
|
-
)
|
296
|
-
|
297
|
-
response = await client.get(f"/artifacts/{artifact_id}")
|
298
|
-
result = pydantic.parse_obj_as(schemas.core.Artifact, response.json())
|
299
|
-
|
300
|
-
result_data = json.loads(result.data)
|
301
|
-
assert result_data == my_table
|
302
|
-
|
303
|
-
async def test_create_and_read_list_of_list_table_artifact_succeeds(
|
304
|
-
self, artifact, client
|
305
|
-
):
|
306
|
-
my_table = [[1, 2], [None, 4]]
|
307
|
-
|
308
|
-
artifact_id = await create_table_artifact(
|
309
|
-
key=artifact.key,
|
310
|
-
table=my_table,
|
311
|
-
description=artifact.description,
|
312
|
-
)
|
313
|
-
|
314
|
-
response = await client.get(f"/artifacts/{artifact_id}")
|
315
|
-
result = pydantic.parse_obj_as(schemas.core.Artifact, response.json())
|
316
|
-
result_data = json.loads(result.data)
|
317
|
-
assert result_data == my_table
|
318
|
-
|
319
|
-
async def test_create_table_artifact_in_task_succeeds(self, client):
|
320
|
-
@task
|
321
|
-
def my_special_task():
|
322
|
-
my_table = {"a": [1, 3], "b": [2, 4]}
|
323
|
-
task_run_id = get_run_context().task_run.id
|
324
|
-
artifact_id = create_table_artifact(
|
325
|
-
key="task-link-artifact-3",
|
326
|
-
table=my_table,
|
327
|
-
description="my-artifact-description",
|
328
|
-
)
|
329
|
-
return artifact_id, task_run_id
|
330
|
-
|
331
|
-
@flow
|
332
|
-
def my_flow():
|
333
|
-
flow_run_id = get_run_context().flow_run.id
|
334
|
-
artifact_id, task_run_id = my_special_task()
|
335
|
-
|
336
|
-
return artifact_id, flow_run_id, task_run_id
|
337
|
-
|
338
|
-
my_artifact_id, flow_run_id, task_run_id = my_flow()
|
339
|
-
|
340
|
-
response = await client.get(f"/artifacts/{my_artifact_id}")
|
341
|
-
my_table_artifact = pydantic.parse_obj_as(
|
342
|
-
schemas.core.Artifact, response.json()
|
343
|
-
)
|
344
|
-
|
345
|
-
assert my_table_artifact.flow_run_id == flow_run_id
|
346
|
-
assert my_table_artifact.task_run_id == task_run_id
|
347
|
-
result_data = json.loads(my_table_artifact.data)
|
348
|
-
assert result_data == {"a": [1, 3], "b": [2, 4]}
|
349
|
-
|
350
|
-
async def test_create_table_artifact_in_flow_succeeds(self, client):
|
351
|
-
@flow
|
352
|
-
def my_flow():
|
353
|
-
my_table = {"a": [1, 3], "b": [2, 4]}
|
354
|
-
flow_run_id = get_run_context().flow_run.id
|
355
|
-
|
356
|
-
artifact_id = create_table_artifact(
|
357
|
-
key="task-link-artifact-4",
|
358
|
-
table=my_table,
|
359
|
-
description="my-artifact-description",
|
360
|
-
)
|
361
|
-
|
362
|
-
return artifact_id, flow_run_id
|
363
|
-
|
364
|
-
my_artifact_id, flow_run_id = my_flow()
|
365
|
-
|
366
|
-
response = await client.get(f"/artifacts/{my_artifact_id}")
|
367
|
-
my_table_artifact = pydantic.parse_obj_as(
|
368
|
-
schemas.core.Artifact, response.json()
|
369
|
-
)
|
370
|
-
|
371
|
-
assert my_table_artifact.flow_run_id == flow_run_id
|
372
|
-
assert my_table_artifact.task_run_id is None
|
373
|
-
result_data = json.loads(my_table_artifact.data)
|
374
|
-
assert result_data == {"a": [1, 3], "b": [2, 4]}
|
375
|
-
|
376
|
-
async def test_create_table_artifact_in_subflow_succeeds(self, client):
|
377
|
-
@flow
|
378
|
-
def my_subflow():
|
379
|
-
my_table = {"a": [1, 3], "b": [2, 4]}
|
380
|
-
flow_run_id = get_run_context().flow_run.id
|
381
|
-
artifact_id = create_table_artifact(
|
382
|
-
key="task-link-artifact-3",
|
383
|
-
table=my_table,
|
384
|
-
description="my-artifact-description",
|
385
|
-
)
|
386
|
-
return artifact_id, flow_run_id
|
387
|
-
|
388
|
-
@flow
|
389
|
-
def my_flow():
|
390
|
-
artifact_id, flow_run_id = my_subflow()
|
391
|
-
|
392
|
-
return artifact_id, flow_run_id
|
393
|
-
|
394
|
-
my_artifact_id, flow_run_id = my_flow()
|
395
|
-
|
396
|
-
response = await client.get(f"/artifacts/{my_artifact_id}")
|
397
|
-
my_table_artifact = pydantic.parse_obj_as(
|
398
|
-
schemas.core.Artifact, response.json()
|
399
|
-
)
|
400
|
-
|
401
|
-
assert my_table_artifact.flow_run_id == flow_run_id
|
402
|
-
result_data = json.loads(my_table_artifact.data)
|
403
|
-
assert result_data == {"a": [1, 3], "b": [2, 4]}
|
404
|
-
assert my_table_artifact.task_run_id is None
|
405
|
-
|
406
|
-
async def test_create_table_artifact_using_map_succeeds(self):
|
407
|
-
"""
|
408
|
-
Test that we can create a table artifact using map.
|
409
|
-
An ode to prefect issue
|
410
|
-
"""
|
411
|
-
|
412
|
-
@task
|
413
|
-
def add_ten(x):
|
414
|
-
my_table = {"a": [1, 3], "b": [2, 4]}
|
415
|
-
create_table_artifact(
|
416
|
-
# TODO: uncomment this out once unique constraint is dropped on artifact key
|
417
|
-
# key="task-link-artifact-3",
|
418
|
-
table=my_table,
|
419
|
-
description="my-artifact-description",
|
420
|
-
)
|
421
|
-
return x + 10
|
422
|
-
|
423
|
-
@flow
|
424
|
-
def simple_map(nums: List[int]):
|
425
|
-
big_nums = add_ten.map(nums)
|
426
|
-
return [big_num.result() for big_num in big_nums]
|
427
|
-
|
428
|
-
my_big_nums = simple_map([1, 2, 3])
|
429
|
-
assert my_big_nums == [11, 12, 13]
|
430
|
-
|
431
|
-
async def test_create_dict_table_artifact_with_none_succeeds(self):
|
432
|
-
my_table = {"a": [1, 3], "b": [2, None]}
|
433
|
-
|
434
|
-
await create_table_artifact(
|
435
|
-
key="swiss-table",
|
436
|
-
table=my_table,
|
437
|
-
description="my-artifact-description",
|
438
|
-
)
|
439
|
-
|
440
|
-
async def test_create_dict_table_artifact_with_nan_succeeds(self, client):
|
441
|
-
my_table = {"a": [1, 3], "b": [2, float("nan")]}
|
442
|
-
|
443
|
-
artifact_id = await create_table_artifact(
|
444
|
-
key="swiss-table",
|
445
|
-
table=my_table,
|
446
|
-
description="my-artifact-description",
|
447
|
-
)
|
448
|
-
|
449
|
-
response = await client.get(f"/artifacts/{artifact_id}")
|
450
|
-
my_artifact = pydantic.parse_obj_as(schemas.core.Artifact, response.json())
|
451
|
-
my_data = json.loads(my_artifact.data)
|
452
|
-
assert my_data == {"a": [1, 3], "b": [2, None]}
|
453
|
-
|
454
|
-
async def test_create_list_table_artifact_with_none_succeeds(self):
|
455
|
-
my_table = [
|
456
|
-
{"a": 1, "b": 2},
|
457
|
-
{"a": 3, "b": None},
|
458
|
-
]
|
459
|
-
|
460
|
-
await create_table_artifact(
|
461
|
-
key="swiss-table",
|
462
|
-
table=my_table,
|
463
|
-
description="my-artifact-description",
|
464
|
-
)
|
465
|
-
|
466
|
-
async def test_create_list_table_artifact_with_nan_succeeds(self, client):
|
467
|
-
my_table = [
|
468
|
-
{"a": 1, "b": 2},
|
469
|
-
{"a": 3, "b": float("nan")},
|
470
|
-
]
|
471
|
-
|
472
|
-
artifact_id = await create_table_artifact(
|
473
|
-
key="swiss-table",
|
474
|
-
table=my_table,
|
475
|
-
description="my-artifact-description",
|
476
|
-
)
|
477
|
-
|
478
|
-
response = await client.get(f"/artifacts/{artifact_id}")
|
479
|
-
my_artifact = pydantic.parse_obj_as(schemas.core.Artifact, response.json())
|
480
|
-
my_data = json.loads(my_artifact.data)
|
481
|
-
assert my_data == [
|
482
|
-
{"a": 1, "b": 2},
|
483
|
-
{"a": 3, "b": None},
|
484
|
-
]
|