Skip to content

Commit

Permalink
change: Relax requirements from pydantic
Browse files Browse the repository at this point in the history
Allow using any version from 1.8.2 to 2.0.0 (excluding). This should be
a reasonable balance between stability and flexibility.
  • Loading branch information
orclassiq committed Jan 31, 2022
1 parent 585ee59 commit 26f2797
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
python_requires=">= 3.7",
packages=find_namespace_packages(where="src", exclude=("test",)),
package_dir={"": "src"},
install_requires=["pydantic==1.8.2"],
install_requires=["pydantic >=1.8.2, <2.0.0"],
extras_require={
"test": [
"black",
Expand Down

0 comments on commit 26f2797

Please sign in to comment.