File tree 3 files changed +7
-3
lines changed
airbyte-ci/connectors/pipelines
pipelines/airbyte_ci/connectors/test/steps
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -648,7 +648,8 @@ E.G.: running Poe tasks on the modified internal packages of the current branch:
648
648
# # Changelog
649
649
650
650
| Version | PR | Description |
651
- | ------- | ---------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
651
+ | ------- | ---------------------------------------------------------- |----------------------------------------------------------------------------------------------------------------------------|
652
+ | 4.7.3 | [#37101](https://github.com/airbytehq/airbyte/pull/37101) | Pin PyAirbyte version. |
652
653
| 4.7.2 | [#36962](https://github.com/airbytehq/airbyte/pull/36962) | Re-enable connector dependencies upload on publish. |
653
654
| 4.7.1 | [#36961](https://github.com/airbytehq/airbyte/pull/36961) | Temporarily disable python connectors dependencies upload until we find a schema the data team can work with. |
654
655
| 4.7.0 | [#36892](https://github.com/airbytehq/airbyte/pull/36892) | Upload Python connectors dependencies list to GCS on publish. |
Original file line number Diff line number Diff line change 22
22
from pipelines .helpers .execution .run_steps import STEP_TREE , StepToRun
23
23
from pipelines .models .steps import STEP_PARAMS , Step , StepResult
24
24
25
+ # Pin the PyAirbyte version to avoid updates from breaking CI
26
+ PYAIRBYTE_VERSION = "0.10.2"
27
+
25
28
26
29
class PytestStep (Step , ABC ):
27
30
"""An abstract class to run pytest tests and evaluate success or failure according to pytest logs."""
@@ -230,7 +233,7 @@ async def install_testing_environment(
230
233
[
231
234
"pip" ,
232
235
"install" ,
233
- "airbyte" ,
236
+ f "airbyte== { PYAIRBYTE_VERSION } " ,
234
237
]
235
238
)
236
239
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
5
5
[tool .poetry ]
6
6
name = " pipelines"
7
- version = " 4.7.2 "
7
+ version = " 4.7.3 "
8
8
description = " Packaged maintained by the connector operations team to perform CI for connectors' pipelines"
9
9
authors = [
" Airbyte <[email protected] >" ]
10
10
You can’t perform that action at this time.
0 commit comments