File tree 8 files changed +17
-21
lines changed
tooling/src/hypothesistooling 8 files changed +17
-21
lines changed Original file line number Diff line number Diff line change 70
70
- check-py39-pytest46
71
71
- check-py39-pytest54
72
72
- check-pytest62
73
+ - check-django52
73
74
- check-django51
74
- - check-django50
75
75
- check-django42
76
76
- check-pandas22
77
77
- check-pandas21
Original file line number Diff line number Diff line change @@ -168,7 +168,6 @@ example:
168
168
):
169
169
i += 1
170
170
171
-
172
171
The more natural way to write this in Python would be:
173
172
174
173
.. code-block :: python
Original file line number Diff line number Diff line change @@ -199,12 +199,10 @@ For example if you ran the following with ``--hypothesis-show-statistics``:
199
199
200
200
from hypothesis import given, strategies as st
201
201
202
-
203
202
@given (st.integers())
204
203
def test_integers (i ):
205
204
pass
206
205
207
-
208
206
You would see:
209
207
210
208
.. code-block :: none
@@ -222,7 +220,6 @@ In some cases (such as filtered and recursive strategies) you will see events me
222
220
223
221
from hypothesis import given, strategies as st
224
222
225
-
226
223
@given (st.integers().filter(lambda x : x % 2 == 0 ))
227
224
def test_even_integers (i ):
228
225
pass
Original file line number Diff line number Diff line change @@ -164,18 +164,18 @@ commands =
164
164
pip install django ==4.2.20
165
165
python -bb -X dev -m tests.django.manage test tests.django {posargs}
166
166
167
- [testenv:django50 ]
167
+ [testenv:django51 ]
168
168
setenv =
169
169
PYTHONWARNDEFAULTENCODING =1
170
170
commands =
171
- pip install django ==5.0.13
171
+ pip install django ==5.1.8
172
172
python -bb -X dev -m tests.django.manage test tests.django {posargs}
173
173
174
- [testenv:django51 ]
174
+ [testenv:django52 ]
175
175
setenv =
176
176
PYTHONWARNDEFAULTENCODING =1
177
177
commands =
178
- pip install django ==5.1.7
178
+ pip install django ==5.2
179
179
python -bb -X dev -m tests.django.manage test tests.django {posargs}
180
180
181
181
[testenv:py{39}-nose]
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ exceptiongroup==1.2.2 ; python_version < "3.11"
28
28
# pytest
29
29
execnet==2.1.1
30
30
# via pytest-xdist
31
- fakeredis==2.27.0
31
+ fakeredis==2.28.1
32
32
# via -r requirements/coverage.in
33
33
iniconfig==2.1.0
34
34
# via pytest
@@ -65,7 +65,7 @@ pytest==8.3.5
65
65
# -r requirements/test.in
66
66
# pytest-cov
67
67
# pytest-xdist
68
- pytest-cov==6.1.0
68
+ pytest-cov==6.1.1
69
69
# via -r requirements/coverage.in
70
70
pytest-xdist==3.6.1
71
71
# via -r requirements/test.in
@@ -92,7 +92,7 @@ tomli==2.2.1
92
92
# black
93
93
# coverage
94
94
# pytest
95
- typing-extensions==4.13.0
95
+ typing-extensions==4.13.1
96
96
# via
97
97
# -r requirements/coverage.in
98
98
# black
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ exceptiongroup==1.2.2 ; python_version < "3.11"
44
44
# trio
45
45
execnet==2.1.1
46
46
# via pytest-xdist
47
- fakeredis==2.27.0
47
+ fakeredis==2.28.1
48
48
# via -r requirements/coverage.in
49
49
h11==0.14.0
50
50
# via
@@ -60,7 +60,7 @@ hyperframe==6.1.0
60
60
# via h2
61
61
hypofuzz==25.3.3
62
62
# via -r requirements/fuzzing.in
63
- hypothesis[cli,watchdog]==6.130.6
63
+ hypothesis[cli,watchdog]==6.130.8
64
64
# via hypofuzz
65
65
idna==3.10
66
66
# via
@@ -116,7 +116,7 @@ pytest==8.3.5
116
116
# hypofuzz
117
117
# pytest-cov
118
118
# pytest-xdist
119
- pytest-cov==6.1.0
119
+ pytest-cov==6.1.1
120
120
# via -r requirements/coverage.in
121
121
pytest-xdist==3.6.1
122
122
# via -r requirements/test.in
@@ -158,7 +158,7 @@ tomli==2.2.1
158
158
# pytest
159
159
trio==0.29.0
160
160
# via hypofuzz
161
- typing-extensions==4.13.0
161
+ typing-extensions==4.13.1
162
162
# via
163
163
# -r requirements/coverage.in
164
164
# anyio
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ decorator==5.2.1
65
65
# via ipython
66
66
distlib==0.3.9
67
67
# via virtualenv
68
- django==5.1.7
68
+ django==5.2
69
69
# via -r requirements/tools.in
70
70
docutils==0.21.2
71
71
# via
@@ -258,7 +258,7 @@ rich==14.0.0
258
258
# via
259
259
# pelican
260
260
# twine
261
- ruff==0.11.2
261
+ ruff==0.11.4
262
262
# via -r requirements/tools.in
263
263
secretstorage==3.3.3
264
264
# via keyring
@@ -343,7 +343,7 @@ types-redis==4.6.0.20241004
343
343
# via -r requirements/tools.in
344
344
types-setuptools==78.1.0.20250329
345
345
# via types-cffi
346
- typing-extensions==4.13.0
346
+ typing-extensions==4.13.1
347
347
# via
348
348
# -r requirements/tools.in
349
349
# anyio
Original file line number Diff line number Diff line change @@ -356,8 +356,8 @@ def update_python_versions():
356
356
357
357
DJANGO_VERSIONS = {
358
358
"4.2" : "4.2.20" ,
359
- "5.0 " : "5.0.13 " ,
360
- "5.1 " : "5.1.7 " ,
359
+ "5.1 " : "5.1.8 " ,
360
+ "5.2 " : "5.2 " ,
361
361
}
362
362
363
363
You can’t perform that action at this time.
0 commit comments