From e65777993c141197e5198c4c87bbca70bfe329b6 Mon Sep 17 00:00:00 2001 From: CI on behalf of the Hypothesis team Date: Sun, 16 Oct 2022 00:09:05 +0000 Subject: [PATCH] Update pinned dependencies --- build.sh | 4 ++-- hypothesis-python/setup.py | 2 +- requirements/coverage.txt | 4 ++-- requirements/tools.txt | 14 +++++++------- tooling/src/hypothesistooling/__main__.py | 8 ++++---- 5 files changed, 16 insertions(+), 16 deletions(-) diff --git a/build.sh b/build.sh index 8f24e8881c..6f66cbabec 100755 --- a/build.sh +++ b/build.sh @@ -23,8 +23,8 @@ if [ -n "${GITHUB_ACTIONS-}" ] || [ -n "${CODESPACES-}" ] ; then else # Otherwise, we install it from scratch # NOTE: tooling keeps this version in sync with ci_version in tooling - "$SCRIPTS/ensure-python.sh" 3.8.14 - PYTHON=$(pythonloc 3.8.14)/bin/python + "$SCRIPTS/ensure-python.sh" 3.8.15 + PYTHON=$(pythonloc 3.8.15)/bin/python fi TOOL_REQUIREMENTS="$ROOT/requirements/tools.txt" diff --git a/hypothesis-python/setup.py b/hypothesis-python/setup.py index d195060a38..a6f9d76b14 100644 --- a/hypothesis-python/setup.py +++ b/hypothesis-python/setup.py @@ -66,7 +66,7 @@ def local_file(name): # zoneinfo is an odd one: every dependency is conditional, because they're # only necessary on old versions of Python or Windows systems. "zoneinfo": [ - "tzdata>=2022.4 ; sys_platform == 'win32'", + "tzdata>=2022.5 ; sys_platform == 'win32'", "backports.zoneinfo>=0.2.1 ; python_version<'3.9'", ], # We only support Django versions with upstream support - see diff --git a/requirements/coverage.txt b/requirements/coverage.txt index 04aa91e77a..83797ee42e 100644 --- a/requirements/coverage.txt +++ b/requirements/coverage.txt @@ -28,7 +28,7 @@ exceptiongroup==1.0.0rc9 ; python_version < "3.11" # via hypothesis (hypothesis-python/setup.py) execnet==1.9.0 # via pytest-xdist -fakeredis==1.9.3 +fakeredis==1.9.4 # via -r requirements/coverage.in iniconfig==1.1.1 # via pytest @@ -40,7 +40,7 @@ mypy-extensions==0.4.3 # via # black # typing-inspect -numpy==1.23.3 +numpy==1.23.4 # via # -r requirements/coverage.in # pandas diff --git a/requirements/tools.txt b/requirements/tools.txt index ebdde01052..e206ebab21 100644 --- a/requirements/tools.txt +++ b/requirements/tools.txt @@ -17,7 +17,7 @@ attrs==22.1.0 # flake8-bugbear # hypothesis (hypothesis-python/setup.py) # pytest -autoflake==1.7.0 +autoflake==1.7.6 # via shed babel==2.10.3 # via sphinx @@ -45,7 +45,7 @@ click==8.1.3 # via # black # pip-tools -codespell==2.2.1 +codespell==2.2.2 # via -r requirements/tools.in com2ann==0.3.0 # via shed @@ -122,7 +122,7 @@ flake8-simplify==0.19.3 # via -r requirements/tools.in gitdb==4.0.9 # via gitpython -gitpython==3.1.28 +gitpython==3.1.29 # via bandit idna==3.4 # via requests @@ -232,7 +232,7 @@ pygments==2.13.0 # sphinx pyparsing==3.0.9 # via packaging -pyright==1.1.274 +pyright==1.1.275 # via -r requirements/tools.in pytest==7.1.3 # via -r requirements/tools.in @@ -240,7 +240,7 @@ python-dateutil==2.8.2 # via -r requirements/tools.in pytz==2022.4 # via babel -pyupgrade==3.0.0 +pyupgrade==3.1.0 # via shed pyyaml==6.0 # via @@ -312,7 +312,7 @@ sqlparse==0.4.3 # via django stack-data==0.5.1 # via ipython -stevedore==4.0.0 +stevedore==4.0.1 # via bandit tokenize-rt==5.0.0 # via pyupgrade @@ -339,7 +339,7 @@ types-pkg-resources==0.1.3 # via -r requirements/tools.in types-pytz==2022.4.0.0 # via -r requirements/tools.in -types-redis==4.3.21.1 +types-redis==4.3.21.2 # via -r requirements/tools.in typing-extensions==4.4.0 # via diff --git a/tooling/src/hypothesistooling/__main__.py b/tooling/src/hypothesistooling/__main__.py index 976a218dc3..10fe05a207 100644 --- a/tooling/src/hypothesistooling/__main__.py +++ b/tooling/src/hypothesistooling/__main__.py @@ -380,10 +380,10 @@ def run_tox(task, version, *args): # When a version is added or removed, manually update the env lists in tox.ini and # workflows/main.yml, and the `Programming Language ::` specifiers in setup.py PYTHONS = { - "3.7": "3.7.14", - "3.8": "3.8.14", - "3.9": "3.9.14", - "3.10": "3.10.7", + "3.7": "3.7.15", + "3.8": "3.8.15", + "3.9": "3.9.15", + "3.10": "3.10.8", "3.11": "3.11-dev", "3.12": "3.12-dev", "pypy3.7": "pypy3.7-7.3.9",