Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update json-schema requirement from ~> 4 to >= 4, < 6 #835

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ PATH
specs:
langchainrb (0.19.0)
baran (~> 0.1.9)
json-schema (~> 4)
json-schema (>= 4, < 6)
matrix
pragmatic_segmenter (~> 0.3.0)
zeitwerk (~> 2.5)
Expand Down Expand Up @@ -38,8 +38,8 @@ GEM
minitest (>= 5.1)
mutex_m
tzinfo (~> 2.0)
addressable (2.8.6)
public_suffix (>= 2.0.2, < 6.0)
addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0)
afm (0.2.2)
ai21 (0.2.1)
anthropic (0.3.2)
Expand Down Expand Up @@ -196,8 +196,8 @@ GEM
reline (>= 0.4.2)
jmespath (1.6.2)
json (2.7.2)
json-schema (4.3.0)
addressable (>= 2.8)
json-schema (5.0.1)
addressable (~> 2.8)
jwt (2.8.1)
base64
language_server-protocol (3.17.0.3)
Expand Down Expand Up @@ -284,7 +284,7 @@ GEM
pry (>= 0.13, < 0.15)
psych (5.1.2)
stringio
public_suffix (5.0.5)
public_suffix (6.0.1)
qdrant-ruby (0.9.8)
faraday (>= 2.0.1, < 3)
racc (1.8.0)
Expand Down
2 changes: 1 addition & 1 deletion langchain.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Gem::Specification.new do |spec|
# dependencies
# Not sure if we should require this as it only applies to OpenAI usecase.
spec.add_dependency "baran", "~> 0.1.9"
spec.add_dependency "json-schema", "~> 4"
spec.add_dependency "json-schema", ">= 4", "< 6"
spec.add_dependency "zeitwerk", "~> 2.5"
spec.add_dependency "pragmatic_segmenter", "~> 0.3.0"
spec.add_dependency "matrix"
Expand Down