You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/upgrade-pylib.md
+12-10Lines changed: 12 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,21 +72,23 @@ else
72
72
fi
73
73
```
74
74
75
-
## Step 2: Pick a module to upgrade
75
+
## Step 2: Determine module name
76
76
77
-
If the user provided a module name via `${{ github.event.inputs.name }}`, use **exactly** that module. Skip the selection logic below and go directly to Step 3.
78
-
79
-
If NO module name was provided, run the todo script to auto-pick one:
77
+
Run this script to determine the module name:
80
78
81
79
```bash
82
-
python3 scripts/update_lib todo
80
+
MODULE_NAME="${{ github.event.inputs.name }}"
81
+
if [ -z"$MODULE_NAME" ];then
82
+
echo"No module specified, running todo to find one..."
83
+
python3 scripts/update_lib todo
84
+
echo"Pick one module from the list above that is marked [ ], has no unmet deps, and has a small Δ number."
@unittest.expectedFailure# TODO: RUSTPYTHON; Need to implement __buffer__ and __release_buffer__ (https://docs.python.org/3.13/reference/datamodel.html#emulating-buffer-types)
1960
+
@unittest.expectedFailure# TODO: RUSTPYTHON; Need to implement __buffer__ and __release_buffer__ (https://docs.python.org/3.13/reference/datamodel.html#emulating-buffer-types)
0 commit comments