chore: update dependencies and modernize project config - #40
Merged
Merged
Conversation
jirispilka
approved these changes
Jul 30, 2026
Contributor
|
Thank you, there is one lint fix, not sure how that happened. |
drobnikj
approved these changes
Jul 30, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Migrate
pyproject.tomlto a PEP 621[project]tableThe release workflow bumps the version with
uv version, which writes to[project].version. This repo declared metadata under legacy[tool.poetry],so the release failed at the bump step with
error: Noprojecttable found.This moves the core metadata to
[project], setsrequires = ["poetry-core>=2.0.0"], and regeneratespoetry.lock. Format-only:dependency versions, package contents, and runtime behavior are unchanged.
What changed
pyproject.toml[tool.poetry]metadata →[project](name, staticversion, description, authors, readme, license,requires-python,dependencies,[project.urls]);poetry-core>=1.0.0→>=2.0.0poetry.lockcontent-hashline only, no dependency version changestests/unit_tests/test_tools.pyzip(..., strict=True)in the tool-metadata test: the migration lets ruff infer py310 and enforceB905, which was silently skipped beforeLeft untouched: the
[tool.poetry.group.*]dev/test groups, theapify-client/langchain-core/eval-type-backportconstraints, and the0.1.6version string (the release workflow sets the real number).