Skip to content

Commit

Permalink
Update pinned dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
DRMacIver committed Sep 5, 2022
1 parent 10d9aa7 commit 5798cec
Show file tree
Hide file tree
Showing 8 changed files with 62 additions and 65 deletions.
3 changes: 3 additions & 0 deletions hypothesis-python/RELEASE.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
RELEASE_TYPE: patch

This patch updates our autoformatting tools, improving our code style without any API changes.
2 changes: 1 addition & 1 deletion hypothesis-python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def local_file(name):
# zoneinfo is an odd one: every dependency is conditional, because they're
# only necessary on old versions of Python or Windows systems.
"zoneinfo": [
"tzdata>=2022.1 ; sys_platform == 'win32'",
"tzdata>=2022.2 ; sys_platform == 'win32'",
"backports.zoneinfo>=0.2.1 ; python_version<'3.9'",
],
# We only support Django versions with upstream support - see
Expand Down
2 changes: 1 addition & 1 deletion hypothesis-python/src/hypothesis/extra/ghostwriter.py
Original file line number Diff line number Diff line change
Expand Up @@ -1464,7 +1464,7 @@ def maker(
# happen. E.g. type(None) -> <class 'NoneType'> -> quoted.
try:
# We don't actually execute this code object; we're just compiling
# to check that the repr is syntatically valid. HOWEVER, we're
# to check that the repr is syntactically valid. HOWEVER, we're
# going to output that code string into test code which will be
# executed; so you still shouldn't ghostwrite for hostile code.
compile(repr(identity), "<string>", "exec")
Expand Down
2 changes: 1 addition & 1 deletion hypothesis-python/src/hypothesis/internal/filtering.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
For example::
integers().filter(lamda x: x >= 0) -> integers(min_value=0)
integers().filter(lambda x: x >= 0) -> integers(min_value=0)
This is intractable in general, but reasonably easy for simple cases involving
numeric bounds, strings with length or regex constraints, and collection lengths -
Expand Down
20 changes: 10 additions & 10 deletions requirements/coverage.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,23 @@ attrs==22.1.0
# pytest
backports-zoneinfo==0.2.1
# via -r requirements/coverage.in
black==22.6.0
black==22.8.0
# via -r requirements/coverage.in
click==8.1.3
# via
# -r requirements/coverage.in
# black
coverage==6.4.2
coverage==6.4.4
# via -r requirements/coverage.in
deprecated==1.2.13
# via redis
dpcontracts==0.6.0
# via -r requirements/coverage.in
exceptiongroup==1.0.0rc8 ; python_version < "3.11"
exceptiongroup==1.0.0rc9 ; python_version < "3.11"
# via hypothesis (hypothesis-python/setup.py)
execnet==1.9.0
# via pytest-xdist
fakeredis==1.8.2
fakeredis==1.9.1
# via -r requirements/coverage.in
iniconfig==1.1.1
# via pytest
Expand All @@ -40,17 +40,17 @@ mypy-extensions==0.4.3
# via
# black
# typing-inspect
numpy==1.23.1
numpy==1.23.2
# via
# -r requirements/coverage.in
# pandas
packaging==21.3
# via
# pytest
# redis
pandas==1.4.3
pandas==1.4.4
# via -r requirements/coverage.in
pathspec==0.9.0
pathspec==0.10.1
# via black
pexpect==4.8.0
# via -r requirements/test.in
Expand All @@ -66,7 +66,7 @@ py==1.11.0
# pytest-forked
pyparsing==3.0.9
# via packaging
pytest==7.1.2
pytest==7.1.3
# via
# -r requirements/test.in
# pytest-forked
Expand All @@ -79,7 +79,7 @@ python-dateutil==2.8.2
# via
# -r requirements/coverage.in
# pandas
pytz==2022.1
pytz==2022.2.1
# via
# -r requirements/coverage.in
# pandas
Expand All @@ -105,7 +105,7 @@ typing-extensions==4.3.0
# black
# libcst
# typing-inspect
typing-inspect==0.7.1
typing-inspect==0.8.0
# via libcst
wrapt==1.14.1
# via deprecated
4 changes: 2 additions & 2 deletions requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ attrs==22.1.0
# via
# hypothesis (hypothesis-python/setup.py)
# pytest
exceptiongroup==1.0.0rc8 ; python_version < "3.11"
exceptiongroup==1.0.0rc9 ; python_version < "3.11"
# via hypothesis (hypothesis-python/setup.py)
execnet==1.9.0
# via pytest-xdist
Expand All @@ -28,7 +28,7 @@ py==1.11.0
# pytest-forked
pyparsing==3.0.9
# via packaging
pytest==7.1.2
pytest==7.1.3
# via
# -r requirements/test.in
# pytest-forked
Expand Down
Loading

0 comments on commit 5798cec

Please sign in to comment.