From e2fd390154081a171488cdf1b571cf5740fd63a8 Mon Sep 17 00:00:00 2001 From: David Lord Date: Tue, 27 Jun 2023 08:35:49 -0700 Subject: [PATCH] update dependencies --- .github/workflows/tests.yaml | 2 +- .pre-commit-config.yaml | 4 ++-- requirements/dev.txt | 12 ++++++------ requirements/docs.txt | 6 +++--- requirements/tests.txt | 4 ++-- requirements/typing.txt | 4 ++-- setup.cfg | 1 - tox.ini | 4 +--- 8 files changed, 17 insertions(+), 20 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index a85f6c7b..0a839517 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -32,7 +32,7 @@ jobs: - {name: '3.9', python: '3.9', os: ubuntu-latest, tox: py39} - {name: '3.8', python: '3.8', os: ubuntu-latest, tox: py38} - {name: '3.7', python: '3.7', os: ubuntu-latest, tox: py37} - - {name: 'PyPy', python: 'pypy-3.9', os: ubuntu-latest, tox: pypy39} + - {name: 'PyPy', python: 'pypy-3.10', os: ubuntu-latest, tox: pypy310} - {name: Typing, python: '3.11', os: ubuntu-latest, tox: typing} steps: - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 63df59ae..ba42b7d3 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -3,12 +3,12 @@ ci: autoupdate_schedule: monthly repos: - repo: https://github.com/asottile/pyupgrade - rev: v3.4.0 + rev: v3.7.0 hooks: - id: pyupgrade args: ["--py37-plus"] - repo: https://github.com/asottile/reorder-python-imports - rev: v3.9.0 + rev: v3.10.0 hooks: - id: reorder-python-imports args: ["--application-directories", "src"] diff --git a/requirements/dev.txt b/requirements/dev.txt index 99a6f034..ed462080 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -24,7 +24,7 @@ colorama==0.4.6 # via tox distlib==0.3.6 # via virtualenv -filelock==3.12.0 +filelock==3.12.2 # via # tox # virtualenv @@ -36,13 +36,13 @@ pip-compile-multi==2.6.3 # via -r requirements/dev.in pip-tools==6.13.0 # via pip-compile-multi -platformdirs==3.5.1 +platformdirs==3.8.0 # via # tox # virtualenv -pre-commit==3.3.2 +pre-commit==3.3.3 # via -r requirements/dev.in -pyproject-api==1.5.1 +pyproject-api==1.5.2 # via tox pyproject-hooks==1.0.0 # via build @@ -50,9 +50,9 @@ pyyaml==6.0 # via pre-commit toposort==1.10 # via pip-compile-multi -tox==4.5.2 +tox==4.6.3 # via -r requirements/dev.in -virtualenv==20.23.0 +virtualenv==20.23.1 # via # pre-commit # tox diff --git a/requirements/docs.txt b/requirements/docs.txt index 2c36046b..e125c59a 100644 --- a/requirements/docs.txt +++ b/requirements/docs.txt @@ -21,13 +21,13 @@ imagesize==1.4.1 # via sphinx jinja2==3.1.2 # via sphinx -markupsafe==2.1.2 +markupsafe==2.1.3 # via jinja2 packaging==23.1 # via # pallets-sphinx-themes # sphinx -pallets-sphinx-themes==2.1.0 +pallets-sphinx-themes==2.1.1 # via -r requirements/docs.in pygments==2.15.1 # via sphinx @@ -57,5 +57,5 @@ sphinxcontrib-qthelp==1.0.3 # via sphinx sphinxcontrib-serializinghtml==1.1.5 # via sphinx -urllib3==2.0.2 +urllib3==2.0.3 # via requests diff --git a/requirements/tests.txt b/requirements/tests.txt index 9e90891d..6a680886 100644 --- a/requirements/tests.txt +++ b/requirements/tests.txt @@ -9,7 +9,7 @@ iniconfig==2.0.0 # via pytest packaging==23.1 # via pytest -pluggy==1.0.0 +pluggy==1.2.0 # via pytest -pytest==7.3.1 +pytest==7.4.0 # via -r requirements/tests.in diff --git a/requirements/typing.txt b/requirements/typing.txt index dce1df05..13afd660 100644 --- a/requirements/typing.txt +++ b/requirements/typing.txt @@ -5,9 +5,9 @@ # # pip-compile-multi # -mypy==1.3.0 +mypy==1.4.1 # via -r requirements/typing.in mypy-extensions==1.0.0 # via mypy -typing-extensions==4.6.2 +typing-extensions==4.6.3 # via mypy diff --git a/setup.cfg b/setup.cfg index 9147bc41..6c5be3fc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -39,7 +39,6 @@ where = src testpaths = tests filterwarnings = error - ignore:ast:DeprecationWarning [coverage:run] branch = True diff --git a/tox.ini b/tox.ini index 7901874e..be507721 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] envlist = py3{12,11,10,9,8,7} - pypy39 + pypy310 style typing docs @@ -18,11 +18,9 @@ skip_install = true commands = pre-commit run --all-files [testenv:typing] -package = wheel deps = -r requirements/typing.txt commands = mypy [testenv:docs] -package = wheel deps = -r requirements/docs.txt commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs {envtmpdir}/html