Skip to content

Commit b1d6bd4

Browse files
build: Update lower bounds to jsonschema v4.15.0, importlib-resources v1.4.0 (#1979)
* Update lower bound of the supported jsonschema versions to v4.15.0 to use the required improvements to jsonschema.RefResolver used in PR #1976. - c.f. https://github.com/orgs/python-jsonschema/discussions/995 - Amends PR #1976. * Update lower bound of the supported importlib-resources versions to v1.4.0 as > jsonschema 4.15.0 depends on importlib-resources>=1.4.0; python_version < "3.9" * Update tests/constraints.txt to use jsonschema==4.15.0 and importlib_resources==1.4.0.
1 parent 925769a commit b1d6bd4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ install_requires =
3838
scipy>=1.1.0 # requires numpy, which is required by pyhf and tensorflow
3939
click>=8.0.0 # for console scripts
4040
tqdm>=4.56.0 # for readxml
41-
jsonschema>=3.0.0 # for utils
41+
jsonschema>=4.15.0 # for utils
4242
jsonpatch>=1.15
4343
pyyaml>=5.1 # for parsing CLI equal-delimited options
44-
importlib_resources>=1.3.0; python_version < "3.9" # for resources in schema
44+
importlib_resources>=1.4.0; python_version < "3.9" # for resources in schema
4545
typing_extensions>=3.7.4.3; python_version == "3.7" # for SupportsIndex
4646

4747
[options.packages.find]

tests/constraints.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
scipy==1.1.0
33
click==8.0.0 # c.f. PR #1958, #1909
44
tqdm==4.56.0
5-
jsonschema==3.0.0
5+
jsonschema==4.15.0 # c.f. PR #1979
66
jsonpatch==1.15
77
pyyaml==5.1
8-
importlib_resources==1.3.0
8+
importlib_resources==1.4.0 # c.f. PR #1979
99
typing-extensions==3.7.4.3 # c.f. PR #1961, #1940
1010
# xmlio
1111
uproot==4.1.1

0 commit comments

Comments
 (0)