Skip to content

Commit

Permalink
Fix jsonrpcclient dependencies
Browse files Browse the repository at this point in the history
* click dependency was removed in 4.0.0
* apply_defaults and jsonschema were removed in 4.0.1
  • Loading branch information
beenje committed Nov 20, 2024
1 parent b80e04b commit ce2cc8a
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions recipe/patch_yaml/jsonrpcclient.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# jsonrpcclient removed click dependency in 4.0.0
# See https://github.com/explodinglabs/jsonrpcclient/commit/3a5fa2a33e6aa63ceb6eac4843df97631aa48e81
if:
name: jsonrpcclient
version_ge: 4.0.0
timestamp_lt: 1732100712000
has_depends: click <7
then:
- remove_depends: click <7
---
# jsonrpcclient removed apply_defaults dependency in 4.0.1
# See https://github.com/explodinglabs/jsonrpcclient/blob/4.0.1/setup.py
if:
name: jsonrpcclient
version_ge: 4.0.1
timestamp_lt: 1732100712000
has_depends: apply_defaults <1
then:
- remove_depends: apply_defaults <1
---
# jsonrpcclient removed jsonschema dependency in 4.0.1
# See https://github.com/explodinglabs/jsonrpcclient/blob/4.0.1/setup.py
if:
name: jsonrpcclient
version_ge: 4.0.1
timestamp_lt: 1732100712000
has_depends: jsonschema <4
then:
- remove_depends: jsonschema <4

0 comments on commit ce2cc8a

Please sign in to comment.