From f632c28c0d8c2a14a897f56a76d987f5b38a2200 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Wed, 28 Feb 2024 14:57:16 -0500 Subject: [PATCH] chore: make upgrade --- coverage/tracer.pyi | 4 ++++ requirements/dev.pip | 30 +++++++++++++++--------------- requirements/kit.pip | 4 ++-- requirements/light-threads.pip | 4 ++-- requirements/mypy.pip | 6 +++--- requirements/pip-tools.pip | 2 +- requirements/pip.pip | 4 ++-- requirements/pytest.pip | 4 ++-- requirements/tox.pip | 4 ++-- 9 files changed, 33 insertions(+), 29 deletions(-) diff --git a/coverage/tracer.pyi b/coverage/tracer.pyi index 14372d1e3..c5f1c2840 100644 --- a/coverage/tracer.pyi +++ b/coverage/tracer.pyi @@ -1,11 +1,14 @@ # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 # For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt +"""Typing information for the constructs from our .c files.""" + from typing import Any, Dict from coverage.types import TFileDisposition, TTraceData, TTraceFn, TracerCore class CFileDisposition(TFileDisposition): + """CFileDisposition is in ctracer/filedisp.c""" canonical_filename: Any file_tracer: Any has_dynamic_filename: Any @@ -16,6 +19,7 @@ class CFileDisposition(TFileDisposition): def __init__(self) -> None: ... class CTracer(TracerCore): + """CTracer is in ctracer/tracer.c""" check_include: Any concur_id_func: Any data: TTraceData diff --git a/requirements/dev.pip b/requirements/dev.pip index 195904cf8..0c57bf0a4 100644 --- a/requirements/dev.pip +++ b/requirements/dev.pip @@ -4,13 +4,13 @@ # # make upgrade # -astroid==3.0.3 +astroid==3.1.0 # via pylint attrs==23.2.0 # via hypothesis build==1.0.3 # via check-manifest -cachetools==5.3.2 +cachetools==5.3.3 # via tox certifi==2024.2.2 # via requests @@ -47,7 +47,7 @@ flaky==3.7.0 # via -r requirements/pytest.in greenlet==3.0.3 # via -r requirements/dev.in -hypothesis==6.98.9 +hypothesis==6.98.13 # via -r requirements/pytest.in idna==3.6 # via requests @@ -56,7 +56,7 @@ importlib-metadata==7.0.1 # build # keyring # twine -importlib-resources==6.1.1 +importlib-resources==6.1.2 # via keyring iniconfig==2.0.0 # via pytest @@ -66,7 +66,7 @@ jaraco-classes==3.3.1 # via keyring jedi==0.19.1 # via pudb -keyring==24.3.0 +keyring==24.3.1 # via twine libsass==0.23.0 # via -r requirements/dev.in @@ -108,19 +108,19 @@ pygments==2.17.2 # pudb # readme-renderer # rich -pylint==3.0.3 +pylint==3.1.0 # via -r requirements/dev.in pyproject-api==1.6.1 # via tox pyproject-hooks==1.0.0 # via build -pytest==8.0.1 +pytest==8.0.2 # via # -r requirements/pytest.in # pytest-xdist pytest-xdist==3.5.0 # via -r requirements/pytest.in -readme-renderer==42.0 +readme-renderer==43.0 # via # -r requirements/dev.in # twine @@ -133,7 +133,7 @@ requests-toolbelt==1.0.0 # via twine rfc3986==2.0.0 # via twine -rich==13.7.0 +rich==13.7.1 # via twine sortedcontainers==2.4.0 # via hypothesis @@ -148,7 +148,7 @@ tomli==2.0.1 # pyproject-hooks # pytest # tox -tomlkit==0.12.3 +tomlkit==0.12.4 # via pylint tox==4.13.0 # via @@ -158,7 +158,7 @@ tox-gh==1.3.1 # via -r requirements/tox.in twine==5.0.0 # via -r requirements/dev.in -typing-extensions==4.9.0 +typing-extensions==4.10.0 # via # astroid # pylint @@ -168,13 +168,13 @@ urllib3==2.2.1 # via # requests # twine -urwid==2.6.1 +urwid==2.6.7 # via # pudb # urwid-readline -urwid-readline==0.13 +urwid-readline==0.14 # via pudb -virtualenv==20.25.0 +virtualenv==20.25.1 # via # -r requirements/pip.in # tox @@ -188,7 +188,7 @@ zipp==3.17.0 # The following packages are considered to be unsafe in a requirements file: pip==24.0 # via -r requirements/pip.in -setuptools==69.1.0 +setuptools==69.1.1 # via # -r requirements/pip.in # check-manifest diff --git a/requirements/kit.pip b/requirements/kit.pip index 6178060c8..d4b09e1d2 100644 --- a/requirements/kit.pip +++ b/requirements/kit.pip @@ -38,7 +38,7 @@ tomli==2.0.1 # build # cibuildwheel # pyproject-hooks -typing-extensions==4.9.0 +typing-extensions==4.10.0 # via cibuildwheel wheel==0.42.0 # via -r requirements/kit.in @@ -46,5 +46,5 @@ zipp==3.17.0 # via importlib-metadata # The following packages are considered to be unsafe in a requirements file: -setuptools==69.1.0 +setuptools==69.1.1 # via -r requirements/kit.in diff --git a/requirements/light-threads.pip b/requirements/light-threads.pip index 25e58cb4f..884b7c4ae 100644 --- a/requirements/light-threads.pip +++ b/requirements/light-threads.pip @@ -8,7 +8,7 @@ cffi==1.16.0 # via -r requirements/light-threads.in dnspython==2.6.1 # via eventlet -eventlet==0.35.1 +eventlet==0.35.2 # via -r requirements/light-threads.in gevent==24.2.1 # via -r requirements/light-threads.in @@ -25,7 +25,7 @@ zope-interface==6.2 # via gevent # The following packages are considered to be unsafe in a requirements file: -setuptools==69.1.0 +setuptools==69.1.1 # via # zope-event # zope-interface diff --git a/requirements/mypy.pip b/requirements/mypy.pip index 8263a95b6..63d230656 100644 --- a/requirements/mypy.pip +++ b/requirements/mypy.pip @@ -16,7 +16,7 @@ execnet==2.0.2 # via pytest-xdist flaky==3.7.0 # via -r requirements/pytest.in -hypothesis==6.98.9 +hypothesis==6.98.13 # via -r requirements/pytest.in iniconfig==2.0.0 # via pytest @@ -30,7 +30,7 @@ pluggy==1.4.0 # via pytest pygments==2.17.2 # via -r requirements/pytest.in -pytest==8.0.1 +pytest==8.0.2 # via # -r requirements/pytest.in # pytest-xdist @@ -42,5 +42,5 @@ tomli==2.0.1 # via # mypy # pytest -typing-extensions==4.9.0 +typing-extensions==4.10.0 # via mypy diff --git a/requirements/pip-tools.pip b/requirements/pip-tools.pip index e18ace330..ab115fa84 100644 --- a/requirements/pip-tools.pip +++ b/requirements/pip-tools.pip @@ -31,5 +31,5 @@ zipp==3.17.0 # The following packages are considered to be unsafe in a requirements file: pip==24.0 # via pip-tools -setuptools==69.1.0 +setuptools==69.1.1 # via pip-tools diff --git a/requirements/pip.pip b/requirements/pip.pip index 3e3a6362b..1a53df69d 100644 --- a/requirements/pip.pip +++ b/requirements/pip.pip @@ -10,11 +10,11 @@ filelock==3.13.1 # via virtualenv platformdirs==4.2.0 # via virtualenv -virtualenv==20.25.0 +virtualenv==20.25.1 # via -r requirements/pip.in # The following packages are considered to be unsafe in a requirements file: pip==24.0 # via -r requirements/pip.in -setuptools==69.1.0 +setuptools==69.1.1 # via -r requirements/pip.in diff --git a/requirements/pytest.pip b/requirements/pytest.pip index 502c0497a..a6548e3e0 100644 --- a/requirements/pytest.pip +++ b/requirements/pytest.pip @@ -16,7 +16,7 @@ execnet==2.0.2 # via pytest-xdist flaky==3.7.0 # via -r requirements/pytest.in -hypothesis==6.98.9 +hypothesis==6.98.13 # via -r requirements/pytest.in iniconfig==2.0.0 # via pytest @@ -26,7 +26,7 @@ pluggy==1.4.0 # via pytest pygments==2.17.2 # via -r requirements/pytest.in -pytest==8.0.1 +pytest==8.0.2 # via # -r requirements/pytest.in # pytest-xdist diff --git a/requirements/tox.pip b/requirements/tox.pip index 3e1dce2c6..a731d7e61 100644 --- a/requirements/tox.pip +++ b/requirements/tox.pip @@ -4,7 +4,7 @@ # # make upgrade # -cachetools==5.3.2 +cachetools==5.3.3 # via tox chardet==5.2.0 # via tox @@ -40,5 +40,5 @@ tox==4.13.0 # tox-gh tox-gh==1.3.1 # via -r requirements/tox.in -virtualenv==20.25.0 +virtualenv==20.25.1 # via tox