Commit bc9024f
fix(release): suppress NU5104 + portable Python version verify
Two failures from v0.1.0 release run:
1. C# pack failed NU5104 — stable 0.1.0 with FlashAlpha.Historical 0.4.0-rc.10
pre-release dependency. The pin is intentional (rc.10 is the first publish
carrying the GexResponse/StrikeRow types); Python side already accepts
>=0.4.0rc1. Added NoWarn=NU5104 with a comment explaining the choice.
2. release-python.yml version verify used grep -oPm1 with a lookbehind that
not all runner greps support. Swapped to python -c "tomllib.load(...)" —
tomllib is stdlib on the runner's Python 3.12, no flag-portability risk.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>1 parent 72d8e4d commit bc9024f
2 files changed
Lines changed: 12 additions & 7 deletions
File tree
- .github/workflows
- src/csharp/FlashAlpha.QuantConnect
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
20 | | - | |
21 | | - | |
22 | | - | |
23 | | - | |
24 | | - | |
25 | | - | |
26 | | - | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
27 | 24 | | |
28 | 25 | | |
29 | 26 | | |
| |||
Lines changed: 8 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
16 | 24 | | |
17 | 25 | | |
18 | 26 | | |
| |||
0 commit comments