Skip to content

Commit ed47a69

Browse files
authored
Merge pull request #20 from bugout-dev/spec-pydantic-ver
Specified pydantic min version
2 parents c258e57 + ae3cf59 commit ed47a69

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bugout/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
__email__ = "engineering@bugout.dev"
99
__license__ = "MIT"
10-
__version__ = "0.1.5"
10+
__version__ = "0.1.6"
1111

1212
__all__ = (
1313
"__author__",

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
packages=find_packages(),
3939
package_data={"bugout": ["py.typed"]},
4040
zip_safe=False,
41-
install_requires=["pydantic", "requests"],
41+
install_requires=["pydantic>=1.6", "requests"],
4242
extras_require={"dev": ["black", "mypy"]},
4343
entry_points={"console_scripts": ["{0} = {0}.__main__:main".format(MODULE_NAME)]},
4444
)

0 commit comments

Comments
 (0)