From 8b5ee31e7c9bf06b2e20049b4809d96560399c96 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Wed, 8 Oct 2025 16:34:30 -0700 Subject: [PATCH 1/2] update requirements*.txt --- .../5989661ef50b4f31a1ca8019a702a4bb.md | 4 +++ requirements-dev.txt | 34 +++++++++---------- requirements-docs.txt | 2 +- requirements.txt | 4 +-- 4 files changed, 24 insertions(+), 20 deletions(-) create mode 100644 .changelog/5989661ef50b4f31a1ca8019a702a4bb.md diff --git a/.changelog/5989661ef50b4f31a1ca8019a702a4bb.md b/.changelog/5989661ef50b4f31a1ca8019a702a4bb.md new file mode 100644 index 0000000..9994e08 --- /dev/null +++ b/.changelog/5989661ef50b4f31a1ca8019a702a4bb.md @@ -0,0 +1,4 @@ +--- +type: none +--- +Update requirements*.txt \ No newline at end of file diff --git a/requirements-dev.txt b/requirements-dev.txt index 2f25ea3..e7e8b6c 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,52 +1,52 @@ # DO NOT EDIT THIS FILE DIRECTLY - use ./script/update-requirements to update Pygments==2.19.2 -SecretStorage==3.3.3 +SecretStorage==3.4.0 black==24.10.0 build==1.3.0 -certifi==2025.8.3 -cffi==1.17.1 +certifi==2025.10.5 +cffi==2.0.0 changelet==0.3.0 charset-normalizer==3.4.3 click==8.1.8; python_version<'3.10' -click==8.2.1; python_version>='3.10' +click==8.3.0; python_version>='3.10' cmarkgfm==2024.11.20 -coverage==7.10.3 -cryptography==45.0.6 +coverage==7.10.7 +cryptography==46.0.2 docutils==0.21.2 id==1.5.0 iniconfig==2.1.0 -isort==6.0.1 +isort==6.1.0 jaraco.classes==3.4.0 jaraco.context==6.0.1 -jaraco.functools==4.2.1 +jaraco.functools==4.3.0 jeepney==0.9.0 keyring==25.6.0 markdown-it-py==3.0.0 mdurl==0.1.2 -more-itertools==10.7.0 +more-itertools==10.8.0 mypy_extensions==1.1.0 -nh3==0.3.0 +nh3==0.3.1 packaging==25.0 pathspec==0.12.1 -platformdirs==4.3.8 +platformdirs==4.5.0 pluggy==1.6.0 pprintpp==0.4.0 pycountry==24.6.1 pycountry-convert==0.7.2 -pycparser==2.22 +pycparser==2.23 pyflakes==3.4.0 pyproject_hooks==1.2.0 -pytest==8.4.1 -pytest-cov==6.2.1 -pytest-mock==3.14.1 +pytest==8.4.2 +pytest-cov==7.0.0 +pytest-mock==3.15.1 pytest_network==0.0.1 readme_renderer==44.0 repoze.lru==0.7 -requests==2.32.4 +requests==2.32.5 requests-toolbelt==1.0.0 rfc3986==2.0.0 rich==14.1.0 semver==3.0.4 -twine==6.1.0 +twine==6.2.0 urllib3==2.5.0 wheel==0.45.1 diff --git a/requirements-docs.txt b/requirements-docs.txt index 221708f..4b0d9ce 100644 --- a/requirements-docs.txt +++ b/requirements-docs.txt @@ -1,6 +1,6 @@ # DO NOT EDIT THIS FILE DIRECTLY - use ./script/update-requirements to update Jinja2==3.1.6 -MarkupSafe==3.0.2 +MarkupSafe==3.0.3 Sphinx==7.4.7; python_version=='3.9' Sphinx==8.1.3; python_version=='3.10' Sphinx==8.2.3; python_version>='3.11' diff --git a/requirements.txt b/requirements.txt index a40f955..8c0476e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ # DO NOT EDIT THIS FILE DIRECTLY - use ./script/update-requirements to update -PyYAML==6.0.2 -dnspython==2.7.0 +PyYAML==6.0.3 +dnspython==2.8.0 fqdn==1.5.1 idna==3.10 natsort==8.4.0 From 9600c61b355a0e7b87b82976637702839e5cb9b6 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Wed, 8 Oct 2025 16:57:02 -0700 Subject: [PATCH 2/2] Remove python 3.9 from CI matrix, add 3.14 --- .ci-config.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci-config.json b/.ci-config.json index e3cc581..65ec95d 100644 --- a/.ci-config.json +++ b/.ci-config.json @@ -1,4 +1,4 @@ { - "python_version_current": "3.13", - "python_versions_active": ["3.9", "3.10", "3.11", "3.12", "3.13"] + "python_version_current": "3.14", + "python_versions_active": ["3.10", "3.11", "3.12", "3.13", "3.14"] }