diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c2bb71..12eb67e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## [Unreleased] ### Fixed +- 2025-11-19: Fixed ImportError by removing non-existent flow imports (custom_movements_flow, test_sequence_flow, duty_cycle_monitoring_flow, scheduled_duty_cycle_check) from src/progressive_automations_python/__init__.py. These flows only exist in scripts/prefect_flows.py, not in the package module. (Fixes job 55773363544) - 2025-11-19: tests: Add tests/conftest.py to mock RPi.GPIO in CI so pytest can run in non-Raspberry Pi environments. (Fixes job 55770449647) ## Version 0.1 (development) diff --git a/src/progressive_automations_python/__init__.py b/src/progressive_automations_python/__init__.py index 5a31c7c..6456583 100644 --- a/src/progressive_automations_python/__init__.py +++ b/src/progressive_automations_python/__init__.py @@ -39,10 +39,6 @@ from progressive_automations_python.prefect_flows import ( simple_movement_flow, - custom_movements_flow, - test_sequence_flow, - duty_cycle_monitoring_flow, - scheduled_duty_cycle_check ) from progressive_automations_python.deployment import ( @@ -64,6 +60,5 @@ "get_duty_cycle_status", "show_duty_cycle_status", "simple_movement_flow", - "simple_movement_flow", "create_deployments" ]