Hi all, not sure if anybody else is having this is...
# singer-tap-development
h
Hi all, not sure if anybody else is having this issue, but thought I would share here. It looks like
poetry-core
repo switched to the new default branch
main
and deleted the
master
branch. This is causing issues for us as we were using an older version of Singer SDK with this in the generated
pyproject.tml
Copy code
# Uncomment the pinned version in favor of the git URL once
# <https://github.com/python-poetry/poetry-core/pull/257> is merged
# and a new poetry-core 1.0.x is released
# requires = ["poetry-core>=1.0.0"]
requires = ["poetry-core @ git+<https://github.com/python-poetry/poetry-core.git@master>"]
This has broke our production service as we were installing
poetry
by referencing a commit name directly. Just wanted to let anyone else know to switch to this:
Copy code
requires = ["poetry-core>=1.0.0"]