Skip to content

Commit

Permalink
Correct HTTPX version specifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
janko committed May 9, 2024
1 parent 8f62b75 commit c9737f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ supports the HTTP/2 protocol, in addition to many other features.

```rb
gem "down", "~> 5.0"
gem "httpx", "~> 0.22"
gem "httpx", "~> 1.0"
```
```rb
require "down/httpx"
Expand Down
2 changes: 1 addition & 1 deletion down.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "minitest", "~> 5.8"
spec.add_development_dependency "mocha", "~> 1.5"
spec.add_development_dependency "rake"
spec.add_development_dependency "httpx", "~> 0", "< 2.0.0"
spec.add_development_dependency "httpx", RUBY_VERSION >= "2.7" ? "~> 1.0" : "~> 0.24"
spec.add_development_dependency "http", RUBY_VERSION >= "2.5" ? "~> 5.0" : "~> 4.3"
spec.add_development_dependency "warning"
spec.add_development_dependency "csv"
Expand Down

0 comments on commit c9737f9

Please sign in to comment.