Skip to content

Commit

Permalink
Fix: Pin pydantic and jsonschema versions (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
kshitijc authored Sep 30, 2021
1 parent e5d5403 commit c699b0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@
python_requires=">= 3.7",
packages=find_namespace_packages(where="src", exclude=("test",)),
package_dir={"": "src"},
install_requires=["pydantic"],
install_requires=["pydantic==1.8.2"],
extras_require={
"test": [
"black",
"flake8",
"isort",
"jsonschema",
"jsonschema==3.2.0",
"pre-commit",
"pylint",
"pytest",
Expand Down

0 comments on commit c699b0b

Please sign in to comment.