I'm running into an issue. When I run poetry build-lambda, I get the following error:
Checksum verification...
Previous checksum = None
Current checksum = fc01f559e7a9c3c5499fb849cc4e1f8b
Building package...
'Locker' object has no attribute 'is_locked_groups_and_markers'
The only places where is_locked_groups_and_markers is used in the plugin are the following
|
if self._poetry.locker.is_locked_groups_and_markers(): |
|
if self._poetry.locker.is_locked_groups_and_markers(): |
I am currently using Python v3.12, Poetry v1.8.5, and the latest version of the plugin. Here is my configuration for the plugin in my pyproject.toml file
[tool.poetry-plugin-lambda-build]
package-artifact-path = "./build/package.zip"
I'm running into an issue. When I run
poetry build-lambda, I get the following error:The only places where
is_locked_groups_and_markersis used in the plugin are the followingpoetry-plugin-lambda-build/poetry_plugin_lambda_build/requirements.py
Line 97 in f0e1e1b
poetry-plugin-lambda-build/poetry_plugin_lambda_build/requirements.py
Line 230 in f0e1e1b
I am currently using Python v3.12, Poetry v1.8.5, and the latest version of the plugin. Here is my configuration for the plugin in my
pyproject.tomlfile