Skip to content

Commit 049a619

Browse files
committed
fix: use explicit caret for pyshifty's 0.2.x pin
A bare two-component version string ("0.2") is parsed by Poetry as an exact match (==0.2, i.e. only 0.2.0), not a caret range -- unlike a three-component string, which gets caret treatment automatically. Write the caret explicitly (^0.2) so any 0.2.x release is actually accepted. Re-locks to the latest matching release, 0.2.6.
1 parent 629d42a commit 049a619

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

poetry.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ brick-tq-shacl = {optional = true, version="0.3.4a2"}
4141
# SHACL engine and the algebraic validation/repair path are always available.
4242
# Pinned to the 0.2.x line -- the algebra/repair API is not yet stable across
4343
# minor releases.
44-
pyshifty = "0.2"
44+
pyshifty = "^0.2"
4545
werkzeug="^2.3.7"
4646
types-jsonschema = "^4.21.0.20240311"
4747
matplotlib = "^3.9.2"

0 commit comments

Comments
 (0)