Skip to content

Commit bae8013

Browse files
DRMacIverZac-HD
authored andcommitted
Update pinned dependencies
1 parent a4dd971 commit bae8013

File tree

8 files changed

+27
-12
lines changed

8 files changed

+27
-12
lines changed

hypothesis-python/src/hypothesis/errors.py

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
99
# obtain one at https://mozilla.org/MPL/2.0/.
1010

11+
1112
class HypothesisException(Exception):
1213
"""Generic parent class for exceptions thrown by Hypothesis."""
1314

hypothesis-python/src/hypothesis/executors.py

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
99
# obtain one at https://mozilla.org/MPL/2.0/.
1010

11+
1112
def default_executor(function): # pragma: nocover
1213
raise NotImplementedError() # We don't actually use this any more
1314

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

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
99
# obtain one at https://mozilla.org/MPL/2.0/.
1010

11+
1112
class IntervalSet:
1213
def __init__(self, intervals):
1314
self.intervals = tuple(intervals)

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

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
99
# obtain one at https://mozilla.org/MPL/2.0/.
1010

11+
1112
class lazyformat:
1213
"""A format string that isn't evaluated until it's needed."""
1314

hypothesis-python/src/hypothesis/utils/conventions.py

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
99
# obtain one at https://mozilla.org/MPL/2.0/.
1010

11+
1112
class UniqueIdentifier:
1213
"""A factory for sentinel objects with nice reprs."""
1314

requirements/coverage.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ py==1.11.0
6161
# via
6262
# pytest
6363
# pytest-forked
64-
pyparsing==3.0.7
64+
pyparsing==3.0.8
6565
# via packaging
6666
pytest==7.1.1
6767
# via

requirements/test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ py==1.11.0
2424
# via
2525
# pytest
2626
# pytest-forked
27-
pyparsing==3.0.7
27+
pyparsing==3.0.8
2828
# via packaging
2929
pytest==7.1.1
3030
# via

requirements/tools.txt

+20-10
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
#
77
alabaster==0.7.12
88
# via sphinx
9-
appnope==0.1.3
10-
# via ipython
119
asgiref==3.5.0
1210
# via django
1311
astor==0.8.1
@@ -37,6 +35,8 @@ bleach==5.0.0
3735
# via readme-renderer
3836
certifi==2021.10.8
3937
# via requests
38+
cffi==1.15.0
39+
# via cryptography
4040
charset-normalizer==2.0.12
4141
# via requests
4242
click==8.1.2
@@ -51,11 +51,13 @@ commonmark==0.9.1
5151
# via rich
5252
coverage==6.3.2
5353
# via -r requirements/tools.in
54+
cryptography==36.0.2
55+
# via secretstorage
5456
decorator==5.1.1
5557
# via ipython
5658
distlib==0.3.4
5759
# via virtualenv
58-
django==4.0.3
60+
django==4.0.4
5961
# via -r requirements/tools.in
6062
docutils==0.17.1
6163
# via
@@ -144,6 +146,10 @@ isort==5.10.1
144146
# via shed
145147
jedi==0.18.1
146148
# via ipython
149+
jeepney==0.8.0
150+
# via
151+
# keyring
152+
# secretstorage
147153
jinja2==3.1.1
148154
# via sphinx
149155
keyring==23.5.0
@@ -212,6 +218,8 @@ pycodestyle==2.8.0
212218
# via
213219
# flake8
214220
# flake8-bandit
221+
pycparser==2.21
222+
# via cffi
215223
pydocstyle==6.1.1
216224
# via flake8-docstrings
217225
pyflakes==2.4.0
@@ -224,9 +232,9 @@ pygments==2.11.2
224232
# readme-renderer
225233
# rich
226234
# sphinx
227-
pyparsing==3.0.7
235+
pyparsing==3.0.8
228236
# via packaging
229-
pyright==1.1.235
237+
pyright==1.1.238
230238
# via -r requirements/tools.in
231239
pytest==7.1.1
232240
# via -r requirements/tools.in
@@ -256,7 +264,9 @@ rfc3986==2.0.0
256264
# via twine
257265
rich==12.2.0
258266
# via twine
259-
shed==0.9.4
267+
secretstorage==3.3.1
268+
# via keyring
269+
shed==0.9.5
260270
# via -r requirements/tools.in
261271
six==1.16.0
262272
# via
@@ -273,7 +283,7 @@ snowballstemmer==2.2.0
273283
# sphinx
274284
sortedcontainers==2.4.0
275285
# via hypothesis (hypothesis-python/setup.py)
276-
soupsieve==2.3.2
286+
soupsieve==2.3.2.post1
277287
# via beautifulsoup4
278288
sphinx==4.5.0
279289
# via
@@ -318,7 +328,7 @@ tomli==2.0.1
318328
# mypy
319329
# pep517
320330
# pytest
321-
tox==3.24.5
331+
tox==3.25.0
322332
# via -r requirements/tools.in
323333
traitlets==5.1.1
324334
# via
@@ -332,7 +342,7 @@ types-pkg-resources==0.1.3
332342
# via -r requirements/tools.in
333343
types-pytz==2021.3.6
334344
# via -r requirements/tools.in
335-
types-redis==4.1.19
345+
types-redis==4.1.21
336346
# via -r requirements/tools.in
337347
typing-extensions==4.1.1
338348
# via
@@ -349,7 +359,7 @@ urllib3==1.26.9
349359
# via
350360
# requests
351361
# twine
352-
virtualenv==20.14.0
362+
virtualenv==20.14.1
353363
# via tox
354364
wcwidth==0.2.5
355365
# via prompt-toolkit

0 commit comments

Comments
 (0)