File tree 8 files changed +62
-65
lines changed
tooling/src/hypothesistooling
8 files changed +62
-65
lines changed Original file line number Diff line number Diff line change
1
+ RELEASE_TYPE: patch
2
+
3
+ This patch updates our autoformatting tools, improving our code style without any API changes.
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ def local_file(name):
66
66
# zoneinfo is an odd one: every dependency is conditional, because they're
67
67
# only necessary on old versions of Python or Windows systems.
68
68
"zoneinfo" : [
69
- "tzdata>=2022.1 ; sys_platform == 'win32'" ,
69
+ "tzdata>=2022.2 ; sys_platform == 'win32'" ,
70
70
"backports.zoneinfo>=0.2.1 ; python_version<'3.9'" ,
71
71
],
72
72
# We only support Django versions with upstream support - see
Original file line number Diff line number Diff line change @@ -1464,7 +1464,7 @@ def maker(
1464
1464
# happen. E.g. type(None) -> <class 'NoneType'> -> quoted.
1465
1465
try :
1466
1466
# 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
1468
1468
# going to output that code string into test code which will be
1469
1469
# executed; so you still shouldn't ghostwrite for hostile code.
1470
1470
compile (repr (identity ), "<string>" , "exec" )
Original file line number Diff line number Diff line change 12
12
13
13
For example::
14
14
15
- integers().filter(lamda x: x >= 0) -> integers(min_value=0)
15
+ integers().filter(lambda x: x >= 0) -> integers(min_value=0)
16
16
17
17
This is intractable in general, but reasonably easy for simple cases involving
18
18
numeric bounds, strings with length or regex constraints, and collection lengths -
Original file line number Diff line number Diff line change @@ -12,23 +12,23 @@ attrs==22.1.0
12
12
# pytest
13
13
backports-zoneinfo==0.2.1
14
14
# via -r requirements/coverage.in
15
- black==22.6 .0
15
+ black==22.8 .0
16
16
# via -r requirements/coverage.in
17
17
click==8.1.3
18
18
# via
19
19
# -r requirements/coverage.in
20
20
# black
21
- coverage==6.4.2
21
+ coverage==6.4.4
22
22
# via -r requirements/coverage.in
23
23
deprecated==1.2.13
24
24
# via redis
25
25
dpcontracts==0.6.0
26
26
# via -r requirements/coverage.in
27
- exceptiongroup==1.0.0rc8 ; python_version < "3.11"
27
+ exceptiongroup==1.0.0rc9 ; python_version < "3.11"
28
28
# via hypothesis (hypothesis-python/setup.py)
29
29
execnet==1.9.0
30
30
# via pytest-xdist
31
- fakeredis==1.8.2
31
+ fakeredis==1.9.1
32
32
# via -r requirements/coverage.in
33
33
iniconfig==1.1.1
34
34
# via pytest
@@ -40,17 +40,17 @@ mypy-extensions==0.4.3
40
40
# via
41
41
# black
42
42
# typing-inspect
43
- numpy==1.23.1
43
+ numpy==1.23.2
44
44
# via
45
45
# -r requirements/coverage.in
46
46
# pandas
47
47
packaging==21.3
48
48
# via
49
49
# pytest
50
50
# redis
51
- pandas==1.4.3
51
+ pandas==1.4.4
52
52
# via -r requirements/coverage.in
53
- pathspec==0.9.0
53
+ pathspec==0.10.1
54
54
# via black
55
55
pexpect==4.8.0
56
56
# via -r requirements/test.in
@@ -66,7 +66,7 @@ py==1.11.0
66
66
# pytest-forked
67
67
pyparsing==3.0.9
68
68
# via packaging
69
- pytest==7.1.2
69
+ pytest==7.1.3
70
70
# via
71
71
# -r requirements/test.in
72
72
# pytest-forked
@@ -79,7 +79,7 @@ python-dateutil==2.8.2
79
79
# via
80
80
# -r requirements/coverage.in
81
81
# pandas
82
- pytz==2022.1
82
+ pytz==2022.2. 1
83
83
# via
84
84
# -r requirements/coverage.in
85
85
# pandas
@@ -105,7 +105,7 @@ typing-extensions==4.3.0
105
105
# black
106
106
# libcst
107
107
# typing-inspect
108
- typing-inspect==0.7.1
108
+ typing-inspect==0.8.0
109
109
# via libcst
110
110
wrapt==1.14.1
111
111
# via deprecated
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ attrs==22.1.0
8
8
# via
9
9
# hypothesis (hypothesis-python/setup.py)
10
10
# pytest
11
- exceptiongroup==1.0.0rc8 ; python_version < "3.11"
11
+ exceptiongroup==1.0.0rc9 ; python_version < "3.11"
12
12
# via hypothesis (hypothesis-python/setup.py)
13
13
execnet==1.9.0
14
14
# via pytest-xdist
@@ -28,7 +28,7 @@ py==1.11.0
28
28
# pytest-forked
29
29
pyparsing==3.0.9
30
30
# via packaging
31
- pytest==7.1.2
31
+ pytest==7.1.3
32
32
# via
33
33
# -r requirements/test.in
34
34
# pytest-forked
You can’t perform that action at this time.
0 commit comments