Skip to content

Commit ee9893d

Browse files
authored
Fix the jsonschema lower bound in setup.cfg (#244)
This was supposed to update in v0.21.0 , but this didn't happen correctly. The changeset updated the mindeps test and other locations, but the change to setup.cfg itself was never committed.
1 parent 2f10c4c commit ee9893d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Unreleased
1313
- Update vendored schemas (2023-02-18)
1414
- The ``check-dependabot`` hook now also supports ``.github/dependabot.yaml``
1515
Thanks :user:`noorul`!
16+
- Fix a mistake in the dependency bound for ``jsonschema``, which was intended
17+
to change in v0.21.0
1618

1719
0.21.0
1820
------

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ python_requires = >=3.7
2020
install_requires =
2121
importlib-resources>=1.4.0;python_version<"3.9"
2222
ruamel.yaml==0.17.21
23-
jsonschema>=4,<5.0
23+
jsonschema>=4.5.1,<5.0
2424
requests<3.0
2525
click>=8,<9
2626
package_dir=

0 commit comments

Comments
 (0)