Skip to content

Commit a852963

Browse files
authored
Revert "Attempt to fix transient nightly build errors: Remove poetry … (#36206)
1 parent abb1d69 commit a852963

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

airbyte-ci/connectors/pipelines/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -644,6 +644,7 @@ E.G.: running Poe tasks on the modified internal packages of the current branch:
644644

645645
| Version | PR | Description |
646646
| ------- | ---------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
647+
| 4.5.4 | [#36206](https://github.com/airbytehq/airbyte/pull/36206) | Revert poetry cache removal during nightly builds |
647648
| 4.5.3 | [#34586](https://github.com/airbytehq/airbyte/pull/34586) | Extract connector changelog modification logic into its own class |
648649
| 4.5.2 | [#35802](https://github.com/airbytehq/airbyte/pull/35802) | Fix bug with connectors bump_version command |
649650
| 4.5.1 | [#35786](https://github.com/airbytehq/airbyte/pull/35786) | Declare `live_tests` as an internal poetry package. |

airbyte-ci/connectors/pipelines/pipelines/dagger/actions/python/common.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from dagger import Container, Directory
1010
from pipelines import hacks
1111
from pipelines.airbyte_ci.connectors.context import ConnectorContext, PipelineContext
12-
from pipelines.dagger.containers.python import with_pip_cache, with_python_base, with_testing_dependencies
12+
from pipelines.dagger.containers.python import with_pip_cache, with_poetry_cache, with_python_base, with_testing_dependencies
1313
from pipelines.helpers.utils import check_path_in_workdir, get_file_contents
1414

1515

@@ -211,9 +211,7 @@ async def with_installed_python_package(
211211
has_pyproject_toml = await check_path_in_workdir(container, "pyproject.toml")
212212

213213
if has_pyproject_toml:
214-
# This is a temporary change in order to scope an issue. There should be following action items once we have more information.
215-
# maxi297 has an action item on his calendar for 2024-03-21 to review this
216-
# container = with_poetry_cache(container, context.dagger_client)
214+
container = with_poetry_cache(container, context.dagger_client)
217215
container = _install_python_dependencies_from_poetry(container, additional_dependency_groups, install_root_package)
218216
elif has_setup_py:
219217
container = with_pip_cache(container, context.dagger_client)

airbyte-ci/connectors/pipelines/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "pipelines"
7-
version = "4.5.3"
7+
version = "4.5.4"
88
description = "Packaged maintained by the connector operations team to perform CI for connectors' pipelines"
99
authors = ["Airbyte <[email protected]>"]
1010

0 commit comments

Comments
 (0)