- 
                Notifications
    You must be signed in to change notification settings 
- Fork 1.3k
Update Frequency Transform #8537
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev
Are you sure you want to change the base?
Changes from 10 commits
b219cf5
              912820f
              1785d18
              7ff764d
              69b3937
              67916d0
              2afab14
              899796e
              9f18655
              db37c60
              74eb01b
              f1b7818
              File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
|  | @@ -2,7 +2,7 @@ | |
| requires = [ | ||
| "wheel", | ||
| "setuptools", | ||
| "torch>=2.4.1", | ||
| "torch>=2.5.1", | ||
| "ninja", | ||
| "packaging" | ||
| ] | ||
|  | ||
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| torch>=2.4.1; platform_system != "Windows" | ||
| torch>=2.4.1, !=2.7.0; platform_system == "Windows" | ||
| torch>=2.5.1; platform_system != "Windows" | ||
| torch>=2.5.1, !=2.7.0; platform_system == "Windows" | ||
| 
      Comment on lines
    
      +1
     to 
      +2
    
   There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Verification agent 🧩 Analysis chainConfirm non-breaking claim and dependency consistency (torch, torchaudio, numpy). 
 Run this script to check for constraint consistency and runtime usage: I can help propose extras (e.g.,  🏁 Script executed: #!/bin/bash
set -euo pipefail
echo "== Torch constraints across repo =="
rg -n --no-heading -A2 -B2 $'torch\\s*[<>=!]' || true
echo
echo "== Torchaudio presence (constraints/imports) =="
rg -n --no-heading -A2 -B2 $'torchaudio' || true
echo
echo "== Numpy constraints (requirements*/pyproject) =="
rg -n --no-heading $'^numpy.*' requirements* pyproject.toml || true
echo
echo "== CI workflows referencing torch versions =="
fd -t f -a .github | xargs -I {} rg -n --no-heading -H 'torch|pytorch|TORCH_VERSION' {} || trueLength of output: 18092 Action required — align torch pins, confirm torchaudio runtime vs dev, and verify NumPy 2.x CI Scan summary (concise): pyproject.toml and requirements.txt require torch>=2.5.1, but setup.cfg/docs/env still allow older torch/pytorch; torchaudio appears only in dev requirements; numpy is pinned >=1.24,<3.0. Files needing attention: 
 Please update the listed files or confirm the intended supported matrix and whether torchaudio is a runtime dependency; I can prepare concrete diffs if you want. 🤖 Prompt for AI Agents | ||
| numpy>=1.24,<3.0 | ||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|  | @@ -42,7 +42,7 @@ setup_requires = | |||||||||||||||||
| ninja | ||||||||||||||||||
| packaging | ||||||||||||||||||
| install_requires = | ||||||||||||||||||
| torch>=2.4.1 | ||||||||||||||||||
| torch>=2.5.1 | ||||||||||||||||||
| numpy>=1.24,<3.0 | ||||||||||||||||||
| 
      Comment on lines
    
      44
     to 
      46
    
   There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Verification agent 🧩 Analysis chainAdd Windows marker to exclude torch 2.7.0 here as well. setup.cfg doesn’t reflect the Windows   install_requires =
-    torch>=2.5.1
+    torch>=2.5.1; platform_system != "Windows"
+    torch>=2.5.1,!=2.7.0; platform_system == "Windows"
     numpy>=1.24,<3.0🏁 Script executed: #!/bin/bash
# search for torch references across the repo
rg -n "torch" -C2 .
# search for Windows exclusion of version 2.7.0
rg -n "!=2.7.0" -C2 .Length of output: 274858 Add Windows exclusion to setup.cfg install_requires  install_requires =
-    torch>=2.5.1
+    torch>=2.5.1; platform_system != "Windows"
+    torch>=2.5.1,!=2.7.0; platform_system == "Windows"
     numpy>=1.24,<3.0📝 Committable suggestion
 
        Suggested change
       
 🤖 Prompt for AI Agents | ||||||||||||||||||
|  | ||||||||||||||||||
| [options.extras_require] | ||||||||||||||||||
|  | ||||||||||||||||||
Uh oh!
There was an error while loading. Please reload this page.