Skip to content

Commit 5798cec

Browse files
committed
Update pinned dependencies
1 parent 10d9aa7 commit 5798cec

File tree

8 files changed

+62
-65
lines changed

8 files changed

+62
-65
lines changed

hypothesis-python/RELEASE.rst

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
RELEASE_TYPE: patch
2+
3+
This patch updates our autoformatting tools, improving our code style without any API changes.

hypothesis-python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def local_file(name):
6666
# zoneinfo is an odd one: every dependency is conditional, because they're
6767
# only necessary on old versions of Python or Windows systems.
6868
"zoneinfo": [
69-
"tzdata>=2022.1 ; sys_platform == 'win32'",
69+
"tzdata>=2022.2 ; sys_platform == 'win32'",
7070
"backports.zoneinfo>=0.2.1 ; python_version<'3.9'",
7171
],
7272
# We only support Django versions with upstream support - see

hypothesis-python/src/hypothesis/extra/ghostwriter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1464,7 +1464,7 @@ def maker(
14641464
# happen. E.g. type(None) -> <class 'NoneType'> -> quoted.
14651465
try:
14661466
# We don't actually execute this code object; we're just compiling
1467-
# to check that the repr is syntatically valid. HOWEVER, we're
1467+
# to check that the repr is syntactically valid. HOWEVER, we're
14681468
# going to output that code string into test code which will be
14691469
# executed; so you still shouldn't ghostwrite for hostile code.
14701470
compile(repr(identity), "<string>", "exec")

hypothesis-python/src/hypothesis/internal/filtering.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
1313
For example::
1414
15-
integers().filter(lamda x: x >= 0) -> integers(min_value=0)
15+
integers().filter(lambda x: x >= 0) -> integers(min_value=0)
1616
1717
This is intractable in general, but reasonably easy for simple cases involving
1818
numeric bounds, strings with length or regex constraints, and collection lengths -

requirements/coverage.txt

+10-10
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,23 @@ attrs==22.1.0
1212
# pytest
1313
backports-zoneinfo==0.2.1
1414
# via -r requirements/coverage.in
15-
black==22.6.0
15+
black==22.8.0
1616
# via -r requirements/coverage.in
1717
click==8.1.3
1818
# via
1919
# -r requirements/coverage.in
2020
# black
21-
coverage==6.4.2
21+
coverage==6.4.4
2222
# via -r requirements/coverage.in
2323
deprecated==1.2.13
2424
# via redis
2525
dpcontracts==0.6.0
2626
# via -r requirements/coverage.in
27-
exceptiongroup==1.0.0rc8 ; python_version < "3.11"
27+
exceptiongroup==1.0.0rc9 ; python_version < "3.11"
2828
# via hypothesis (hypothesis-python/setup.py)
2929
execnet==1.9.0
3030
# via pytest-xdist
31-
fakeredis==1.8.2
31+
fakeredis==1.9.1
3232
# via -r requirements/coverage.in
3333
iniconfig==1.1.1
3434
# via pytest
@@ -40,17 +40,17 @@ mypy-extensions==0.4.3
4040
# via
4141
# black
4242
# typing-inspect
43-
numpy==1.23.1
43+
numpy==1.23.2
4444
# via
4545
# -r requirements/coverage.in
4646
# pandas
4747
packaging==21.3
4848
# via
4949
# pytest
5050
# redis
51-
pandas==1.4.3
51+
pandas==1.4.4
5252
# via -r requirements/coverage.in
53-
pathspec==0.9.0
53+
pathspec==0.10.1
5454
# via black
5555
pexpect==4.8.0
5656
# via -r requirements/test.in
@@ -66,7 +66,7 @@ py==1.11.0
6666
# pytest-forked
6767
pyparsing==3.0.9
6868
# via packaging
69-
pytest==7.1.2
69+
pytest==7.1.3
7070
# via
7171
# -r requirements/test.in
7272
# pytest-forked
@@ -79,7 +79,7 @@ python-dateutil==2.8.2
7979
# via
8080
# -r requirements/coverage.in
8181
# pandas
82-
pytz==2022.1
82+
pytz==2022.2.1
8383
# via
8484
# -r requirements/coverage.in
8585
# pandas
@@ -105,7 +105,7 @@ typing-extensions==4.3.0
105105
# black
106106
# libcst
107107
# typing-inspect
108-
typing-inspect==0.7.1
108+
typing-inspect==0.8.0
109109
# via libcst
110110
wrapt==1.14.1
111111
# via deprecated

requirements/test.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ attrs==22.1.0
88
# via
99
# hypothesis (hypothesis-python/setup.py)
1010
# pytest
11-
exceptiongroup==1.0.0rc8 ; python_version < "3.11"
11+
exceptiongroup==1.0.0rc9 ; python_version < "3.11"
1212
# via hypothesis (hypothesis-python/setup.py)
1313
execnet==1.9.0
1414
# via pytest-xdist
@@ -28,7 +28,7 @@ py==1.11.0
2828
# pytest-forked
2929
pyparsing==3.0.9
3030
# via packaging
31-
pytest==7.1.2
31+
pytest==7.1.3
3232
# via
3333
# -r requirements/test.in
3434
# pytest-forked

0 commit comments

Comments
 (0)