build(deps): bump hypothesis from 6.3.0 to 6.3.4 (#2431)

* build(deps): bump hypothesis from 6.3.0 to 6.3.4

Bumps [hypothesis](https://github.com/HypothesisWorks/hypothesis) from 6.3.0 to 6.3.4.
- [Release notes](https://github.com/HypothesisWorks/hypothesis/releases)
- [Commits](https://github.com/HypothesisWorks/hypothesis/compare/hypothesis-python-6.3.0...hypothesis-python-6.3.4)

Signed-off-by: dependabot[bot] <support@github.com>

* fix: mypy lint

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: PrettyWood <em.jolibois@gmail.com>
This commit is contained in:
dependabot[bot]
2021-03-15 10:22:45 +01:00
committed by GitHub
parent 619ff261c9
commit d723b25cc0
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
ansi2html==1.6.0
flake8==3.8.4
flake8-quotes==3.2.0
hypothesis==6.3.0
hypothesis==6.3.4
markdown-include==0.6.0
mdx-truly-sane-lists==1.2
mkdocs==1.1.2
+1 -1
View File
@@ -220,7 +220,7 @@ def resolve_json(cls): # type: ignore[no-untyped-def]
finite = st.floats(allow_infinity=False, allow_nan=False)
inner = st.recursive(
base=st.one_of(st.none(), st.booleans(), st.integers(), finite, st.text()),
extend=lambda x: st.lists(x) | st.dictionaries(st.text(), x), # type: ignore
extend=lambda x: st.lists(x) | st.dictionaries(st.text(), x),
)
return st.builds(
json.dumps,
+1 -1
View File
@@ -1,7 +1,7 @@
black==20.8b1
flake8==3.8.4
flake8-quotes==3.2.0
hypothesis==6.3.0
hypothesis==6.3.4
isort==5.7.0
mypy==0.812
pycodestyle==2.6.0
+1 -1
View File
@@ -1,5 +1,5 @@
coverage==5.5
hypothesis==6.3.0
hypothesis==6.3.4
# pin importlib-metadata as upper versions need typing-extensions to work if on python < 3.8
importlib-metadata==3.1.0;python_version<"3.8"
mypy==0.812