Skip to content

Commit 945ee47

Browse files
authored
Merge pull request #3477 from HypothesisWorks/create-pull-request/patch
Update pinned dependencies
2 parents 4394167 + e657779 commit 945ee47

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

build.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ if [ -n "${GITHUB_ACTIONS-}" ] || [ -n "${CODESPACES-}" ] ; then
2323
else
2424
# Otherwise, we install it from scratch
2525
# NOTE: tooling keeps this version in sync with ci_version in tooling
26-
"$SCRIPTS/ensure-python.sh" 3.8.14
27-
PYTHON=$(pythonloc 3.8.14)/bin/python
26+
"$SCRIPTS/ensure-python.sh" 3.8.15
27+
PYTHON=$(pythonloc 3.8.15)/bin/python
2828
fi
2929

3030
TOOL_REQUIREMENTS="$ROOT/requirements/tools.txt"

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.4 ; sys_platform == 'win32'",
69+
"tzdata>=2022.5 ; sys_platform == 'win32'",
7070
"backports.zoneinfo>=0.2.1 ; python_version<'3.9'",
7171
],
7272
# We only support Django versions with upstream support - see

requirements/coverage.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ 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.9.3
31+
fakeredis==1.9.4
3232
# via -r requirements/coverage.in
3333
iniconfig==1.1.1
3434
# via pytest
@@ -40,7 +40,7 @@ mypy-extensions==0.4.3
4040
# via
4141
# black
4242
# typing-inspect
43-
numpy==1.23.3
43+
numpy==1.23.4
4444
# via
4545
# -r requirements/coverage.in
4646
# pandas

requirements/tools.txt

+7-7
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ attrs==22.1.0
1717
# flake8-bugbear
1818
# hypothesis (hypothesis-python/setup.py)
1919
# pytest
20-
autoflake==1.7.0
20+
autoflake==1.7.6
2121
# via shed
2222
babel==2.10.3
2323
# via sphinx
@@ -45,7 +45,7 @@ click==8.1.3
4545
# via
4646
# black
4747
# pip-tools
48-
codespell==2.2.1
48+
codespell==2.2.2
4949
# via -r requirements/tools.in
5050
com2ann==0.3.0
5151
# via shed
@@ -122,7 +122,7 @@ flake8-simplify==0.19.3
122122
# via -r requirements/tools.in
123123
gitdb==4.0.9
124124
# via gitpython
125-
gitpython==3.1.28
125+
gitpython==3.1.29
126126
# via bandit
127127
idna==3.4
128128
# via requests
@@ -232,15 +232,15 @@ pygments==2.13.0
232232
# sphinx
233233
pyparsing==3.0.9
234234
# via packaging
235-
pyright==1.1.274
235+
pyright==1.1.275
236236
# via -r requirements/tools.in
237237
pytest==7.1.3
238238
# via -r requirements/tools.in
239239
python-dateutil==2.8.2
240240
# via -r requirements/tools.in
241241
pytz==2022.4
242242
# via babel
243-
pyupgrade==3.0.0
243+
pyupgrade==3.1.0
244244
# via shed
245245
pyyaml==6.0
246246
# via
@@ -312,7 +312,7 @@ sqlparse==0.4.3
312312
# via django
313313
stack-data==0.5.1
314314
# via ipython
315-
stevedore==4.0.0
315+
stevedore==4.0.1
316316
# via bandit
317317
tokenize-rt==5.0.0
318318
# via pyupgrade
@@ -339,7 +339,7 @@ types-pkg-resources==0.1.3
339339
# via -r requirements/tools.in
340340
types-pytz==2022.4.0.0
341341
# via -r requirements/tools.in
342-
types-redis==4.3.21.1
342+
types-redis==4.3.21.2
343343
# via -r requirements/tools.in
344344
typing-extensions==4.4.0
345345
# via

tooling/src/hypothesistooling/__main__.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -380,10 +380,10 @@ def run_tox(task, version, *args):
380380
# When a version is added or removed, manually update the env lists in tox.ini and
381381
# workflows/main.yml, and the `Programming Language ::` specifiers in setup.py
382382
PYTHONS = {
383-
"3.7": "3.7.14",
384-
"3.8": "3.8.14",
385-
"3.9": "3.9.14",
386-
"3.10": "3.10.7",
383+
"3.7": "3.7.15",
384+
"3.8": "3.8.15",
385+
"3.9": "3.9.15",
386+
"3.10": "3.10.8",
387387
"3.11": "3.11-dev",
388388
"3.12": "3.12-dev",
389389
"pypy3.7": "pypy3.7-7.3.9",

0 commit comments

Comments
 (0)