chore(deps): bump the arf-python group in /ARF with 10 updates - #49
Closed
dependabot[bot] wants to merge 1 commit into
Closed
chore(deps): bump the arf-python group in /ARF with 10 updates#49dependabot[bot] wants to merge 1 commit into
dependabot[bot] wants to merge 1 commit into
Conversation
Updates the requirements on [numpy](https://github.com/numpy/numpy), [sentence-transformers](https://github.com/huggingface/sentence-transformers), [torch](https://github.com/pytorch/pytorch), [pytest](https://github.com/pytest-dev/pytest), [typer](https://github.com/fastapi/typer), [rich](https://github.com/Textualize/rich), [aiohttp](https://github.com/aio-libs/aiohttp), [websockets](https://github.com/python-websockets/websockets), [pynacl](https://github.com/pyca/pynacl) and [blake3](https://github.com/oconnor663/blake3-py) to permit the latest version. Updates `numpy` to 2.2.6 - [Release notes](https://github.com/numpy/numpy/releases) - [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst) - [Commits](numpy/numpy@v1.24.0...v2.2.6) Updates `sentence-transformers` to 6.0.0 - [Release notes](https://github.com/huggingface/sentence-transformers/releases) - [Commits](huggingface/sentence-transformers@v2.2.0...v6.0.0) Updates `torch` to 2.13.0 - [Release notes](https://github.com/pytorch/pytorch/releases) - [Changelog](https://github.com/pytorch/pytorch/blob/main/RELEASE.md) - [Commits](pytorch/pytorch@ciflow/torchtitan/166063...v2.13.0) Updates `pytest` to 9.1.1 - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](pytest-dev/pytest@7.0.0...9.1.1) Updates `typer` to 0.27.1 - [Release notes](https://github.com/fastapi/typer/releases) - [Changelog](https://github.com/fastapi/typer/blob/master/docs/release-notes.md) - [Commits](fastapi/typer@0.9.0...0.27.1) Updates `rich` to 15.0.0 - [Release notes](https://github.com/Textualize/rich/releases) - [Changelog](https://github.com/Textualize/rich/blob/main/CHANGELOG.md) - [Commits](Textualize/rich@v13.0.0...v15.0.0) Updates `aiohttp` to 3.14.3 - [Changelog](https://github.com/aio-libs/aiohttp/blob/master/CHANGES.rst) - [Commits](aio-libs/aiohttp@v3.13.0...v3.14.3) Updates `websockets` to 16.1.1 - [Release notes](https://github.com/python-websockets/websockets/releases) - [Commits](python-websockets/websockets@10.0...16.1.1) Updates `pynacl` to 1.6.2 - [Changelog](https://github.com/pyca/pynacl/blob/main/CHANGELOG.rst) - [Commits](pyca/pynacl@1.6.0...1.6.2) Updates `blake3` to 1.0.9 - [Release notes](https://github.com/oconnor663/blake3-py/releases) - [Changelog](https://github.com/oconnor663/blake3-py/blob/master/release.md) - [Commits](oconnor663/blake3-py@1.0.8...1.0.9) --- updated-dependencies: - dependency-name: numpy dependency-version: 2.2.6 dependency-type: direct:production dependency-group: arf-python - dependency-name: sentence-transformers dependency-version: 6.0.0 dependency-type: direct:production dependency-group: arf-python - dependency-name: torch dependency-version: 2.13.0 dependency-type: direct:production dependency-group: arf-python - dependency-name: pytest dependency-version: 9.1.1 dependency-type: direct:production dependency-group: arf-python - dependency-name: typer dependency-version: 0.27.1 dependency-type: direct:production dependency-group: arf-python - dependency-name: rich dependency-version: 15.0.0 dependency-type: direct:production dependency-group: arf-python - dependency-name: aiohttp dependency-version: 3.14.3 dependency-type: direct:production dependency-group: arf-python - dependency-name: websockets dependency-version: 16.1.1 dependency-type: direct:production dependency-group: arf-python - dependency-name: pynacl dependency-version: 1.6.2 dependency-type: direct:production dependency-group: arf-python - dependency-name: blake3 dependency-version: 1.0.9 dependency-type: direct:production dependency-group: arf-python ... Signed-off-by: dependabot[bot] <support@github.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Deploying with
|
| Status | Name | Latest Commit | Updated (UTC) |
|---|---|---|---|
| ❌ Deployment failed View logs |
floss | c70d4bf | Aug 22 2026, 10:37 PM |
kalisam
added a commit
that referenced
this pull request
Aug 23, 2026
…check
Codex, P1, and correct. I documented this exact trap on python-ci.yml's trigger
and then reproduced it one file over.
`Compile check (wasm32)` and `Format` are meant to be required. GitHub leaves a
required check PENDING -- not passing -- when its workflow is skipped by path
filtering, so the `pull_request` paths filter would hang every PR that touches
no Rust.
Measured against the PRs actually open right now, rather than argued:
#43 26 files 0 rust-matching
#45 2 files 0
#49 2 files 0
#51 2 files 0
#53 2 files 0
#54 1 file 0
Six of seven. Every one of them would have sat pending forever the moment the
check was marked required.
Fixed the way Codex suggested, which is better than simply dropping the filter:
run on every pull request and skip the expensive work, rather than skipping the
workflow. A `changes` job diffs against the base ref and sets one output; `fmt`
and `wasm-check` always run and always report, but their toolchain setup, cargo
cache and actual cargo invocation are gated on it. A non-Rust PR gets a green
check in seconds with an explicit "No Rust changes" step saying why, and no
cache write.
The detector is plain git plus grep -- no third-party action, which matters in a
workflow whose other change this cycle was pinning a third-party action to a
SHA. Non-pull_request events (push, schedule, merge_group, workflow_dispatch)
always take the full path.
Regex verified against real paths: ARF/src/lib.rs, ARF/Cargo.toml,
ARF/Cargo.lock and .github/workflows/rust-ci.yml match; requirements-ci.txt,
docs/x.md and packages/y.py do not.
The held clippy/test/clippy-sarif jobs are untouched and still dispatch-only.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01RRe5kvLPeiJetoM7xUHFNW
Contributor
Author
|
Superseded by #58. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updates the requirements on numpy, sentence-transformers, torch, pytest, typer, rich, aiohttp, websockets, pynacl and blake3 to permit the latest version.
Updates
numpyto 2.2.6Release notes
Sourced from numpy's releases.
... (truncated)
Commits
2b686f6Merge pull request #28980 from charris/prepare-2.2.6ed41828REL: Prepare for the NumPy 2.2.6 release [wheel build]83e4e7fMerge pull request #28966 from charris/backport-28958248f0cbTYP: add rejection-tests for complexndarrayfloordiv5bad9daTYP: reject complex scalar types inndarray.__ifloordiv__6c42775Merge pull request #28915 from charris/backport-288924277e7cMerge pull request #28916 from charris/backport-28898bd1c863BUG: Fix missing check for PyErr_Occurred() in _pyarray_correlate. (#28898)87d1d8aMAINT: Avoid dereferencing/strict aliasing warnings during complex casts in `...9e50659Merge pull request #28913 from charris/backport-28908Updates
sentence-transformersto 6.0.0Release notes
Sourced from sentence-transformers's releases.
... (truncated)
Commits
56c9548[docs] Remove revision from EVIE now that it's integrated (#3951)aa791ebRelease v6.0.08b332d1tests: Fix the pretrained MultiVectorEncoder tests for device tensors and Hub...a03cfd6docs: Point cross-references at their documented targets (#3947)310ed7bdocs: Rank the pretrained MultiVectorEncoder models by NanoBEIR and NanoViDoR...345c538Speed up multi-vector padding and numpy to tensor conversion (#3942)8d62fa2[v6] Return tensors on the model device from MultiVectorEncoder encoding (#...8a73e35[v6] Keep the prompt-excluded mask out of the feature dicts (#3944)c8d2c0c[v6] Extend the merged column forward to the SentenceTransformer losses (#3...adc09fc[v6] Fix XTR input validation, padding masks, and integer embedding support...Updates
torchto 2.13.0Release notes
Sourced from torch's releases.
... (truncated)
Changelog
Sourced from torch's changelog.
... (truncated)
Commits
cf30153[release/2.13] Strip +PTX from CUDA arch list on release/RC builds (#188914) ...3e3e24b[release/2.13] Restrict cuda-bindings to Python < 3.15 for CUDA 12.9 builds (...7986b06[release/2.13] Bump binary build timeout 280 -> 400 minutes (#188551)0bdbc26[release/2.13] Add CUDA 12.9 to TORCH_CUDA_ARCH_LIST tables (#188443)9cabb45[release/2.13] Update manywheel docker image pin to 78e737ad (#188409)78e737a[release/2.13] Revert "Tighten generalized scatter graph target (#184075)" (#...0bb9b5b[release/2.13] Revert "dynamo: round-trip torch.cuda.stream ctx mgr across gr...aaac2bf[release/2.13] Revert "[Reland] Port D104346887/PR 182675 for index_add fast ...9330813Fix build_with_debinfo.py broken by CONFIGURE_DEPENDS globbing (#188192)4e077a7Remove setuptools upper bound (#188190)Updates
pytestto 9.1.1Release notes
Sourced from pytest's releases.
Commits
cf470ecPrepare release version 9.1.1e0c8ce6Merge pull request #14625 from pytest-dev/patchback/backports/9.1.x/a07c31a97...1b82d16Merge pull request #14624 from pytest-dev/patchback/backports/9.1.x/b375b79ec...501c4bcMerge pull request #14596 from bluetech/doc-classmethodb61f588Merge pull request #14622 from chrisburr/fix-14608-initial-conftest-test-subdir9a567e0[automated] Update plugin list (#14617) (#14618)ef8b299Merge pull request #14620 from pytest-dev/patchback/backports/9.1.x/680f9f3ed...66abd07Merge pull request #14220 from bysiber/fix-stale-iexp-raisesgroup79fbf93Merge pull request #14612 from pytest-dev/patchback/backports/9.1.x/974ed48b6...0d312ebMerge pull request #14611 from bluetech/parametrize-argvalues-typingUpdates
typerto 0.27.1Release notes
Sourced from typer's releases.
Changelog
Sourced from typer's changelog.
... (truncated)
Commits
fe2aa0e🔖 Release version 0.27.1 (#1919)680dc99📝 Update release notesac3efd5✨ Makeepilogformatting consistent with other parts of the help string (#1...32d80ef📝 Update release notes10cb3c9⬆️ Upgrade latest-changes to 0.7.1 (#1909)ac329a0📝 Update release notesc37ae2f📝 Add Library Skills documentation (#1906)0974a7e📝 Update release notes951178c🐛 Prevent scroll-to-top on restart/fast buttons in the documentation (#1904)9051baa📝 Update release notesUpdates
richto 15.0.0Release notes
Sourced from rich's releases.
Changelog
Sourced from rich's changelog.
... (truncated)
Commits
6ac483ccorrection458a910Merge pull request #4080 from Textualize/bump150082e06e0changelogd6556bcbump to 15.0.0ffe2edcMerge pull request #4079 from Textualize/inline-table-codecf3b5a1changelog77f0edbremove comments7ef2d05fix inline code in table cells19c67b9Merge pull request #4077 from Textualize/isattry494b795changelogUpdates
aiohttpto 3.14.3Changelog
Sourced from aiohttp's changelog.
... (truncated)
Commits
5e392ceRelease v3.14.3 (#13225)49f65d5[PR #13222/f4866933 backport][3.14] Build C parser error message from bounded...240099e[PR #13180/ee53d655 backport][3.14] drop every copy of credential headers on ...d93f30aBump version (#13202)c1b9212Release v3.14.2 (#13201)380d4b5[PR #13054/ed8b040c backport][3.14] escape backslashes in digest auth quoted-...e1e1beeMake llhttp method array size dynamic (#13174) (#13196)aa4cf29[PR #13170/2b906869 backport][3.14] Fix StreamResponse.last_modified rounding...71b57b4[PR #13172/a57747ed backport][3.14] Fix C parser folding fragment into query_...64a03fb[PR #13169/1adc0cd7 backport][3.14] Upgrade http:// to https:// in README.rst...Updates
websocketsto 16.1.1Release notes
Sourced from websockets's releases.
Commits
01df1e4Revert "Decode non-ASCII header values with iso-8859-1."2d61f74Clarify restriction on headers in 16.1.4df6f90Release version 16.1.7c69ecaIncrease timeout for building wheels.493864eComplete and review changelog.73ff538Temporarily remove the trio implementation (again).77f7d71Shorten changelog and docstring for previous commit.84859e1Add text argument to broadcast() to force the frame type1a38f5aDocument research on removing a workaround.99431eeApply code style to docs/conf.py.Updates
pynaclto 1.6.2Changelog
Sourced from pynacl's changelog.
... (truncated)
Commits
ecf41f5changelog and version bump for 1.6.2 (#923)685a5e7Switch to PyPI trusted publishing (#925)78e0aa3missed adding these files as part of the libsodium update (#924)9631488Bump libsodium to the latest 1.0.20 (#922)563b25bAdd script to update vendored libsodium (#921)d233105Include libsodium license in wheels (#917)cabc3a8Bump dessant/lock-threads from 5 to 6 (#914)f359617Bump actions/download-artifact from 6.0.0 to 7.0.0 (#915)fb6e37fBump actions/upload-artifact from 5 to 6 (#916)526f992Bump actions/checkout from 6.0.0 to 6.0.1 (#911)Updates
blake3to 1.0.9Release notes
Sourced from blake3's releases.
Commits
873bedeversion 1.0.92b15761remove Python 3.13t wheels8ad36f4update Cargo.lockbf6993aupdate pyo3 to 0.29c08f627update the installation instructions in the READMEa2a4bc0ci: add riscv64 target to wheel build matrix (#103)62b3abeBump blake3 from 1.8.3 to 1.8.4 (#105)bb7cccaBump softprops/action-gh-release in the github-actions group (#106)90b0ac5Commit Cargo.lock for downstream packagersb96587fBump the github-actions group with 3 updatesDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions