Skip to content

Commit b97936e

Browse files
authored
Fix poetry locks missing hashes. (pantsbuild#16112)
This was due to this change on PyPI: https://discuss.python.org/t/backwards-incompatible-change-to-pypi-json-api/17154 Which was fixed in Poetry yesterday here: python-poetry/poetry#5973 Unfortunately, the full fix requires blowing away the non-Pants controlled Poetry cache at `~/.cache/pypoetry` on Linux and `~/Library/Caches/pypoetry` on Mac. Fixes pantsbuild#16111 [ci skip-rust] [ci skip-build-wheels]
1 parent 6c16484 commit b97936e

File tree

1 file changed

+1
-1
lines changed
  • src/python/pants/backend/python/subsystems

1 file changed

+1
-1
lines changed

Diff for: src/python/pants/backend/python/subsystems/poetry.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class PoetrySubsystem(PythonToolRequirementsBase):
2424
options_scope = "poetry"
2525
help = "Used to generate lockfiles for third-party Python dependencies."
2626

27-
default_version = "poetry==1.1.8"
27+
default_version = "poetry==1.1.14"
2828

2929
register_interpreter_constraints = True
3030
default_interpreter_constraints = ["CPython>=3.7,<4"]

0 commit comments

Comments
 (0)