File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -336,8 +336,9 @@ jobs:
336336 python-version : " ${{ matrix.python-version }}"
337337
338338 - name : Build distribution
339+ # TODO: remove hard-pin on build 1.4.0 once https://github.com/pypa/build/issues/1004 is resolved.
339340 run : |
340- uv pip install -U build
341+ uv pip install -U build==1.4.0
341342 python -m build --sdist --wheel
342343
343344 - name : Upload artifacts 📦
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ class AwesomeStrategy(IStrategy):
3333 trade_entry_type = trade.get_custom_data(key = ' entry_type' )
3434 if trade_entry_type is None :
3535 trade_entry_type = ' breakout' if ' entry_1' in trade.enter_tag else ' dip'
36- elif fills > 1 :
36+ elif len ( fills) > 1 :
3737 trade_entry_type = ' buy_up'
3838 trade.set_custom_data(key = ' entry_type' , value = trade_entry_type)
3939 return super ().bot_loop_start(** kwargs)
Original file line number Diff line number Diff line change @@ -23,9 +23,8 @@ def test_pip_audit_no_vulnerabilities():
2323 Run pip-audit to check for known security vulnerabilities.
2424
2525 This test will fail if any vulnerabilities are detected in the installed packages.
26+ Note: Document ignores here if vulnerabilities are acceptable.
2627
27- Note: CVE-2025-53000 (nbconvert Windows vulnerability) is ignored as it only affects
28- Windows platforms and is a known acceptable risk for this project.
2928 """
3029 # Get the project root directory
3130 project_root = Path (__file__ ).parent .parent
@@ -35,8 +34,8 @@ def test_pip_audit_no_vulnerabilities():
3534 "pip_audit" ,
3635 # "--format=json",
3736 "--progress-spinner=off" ,
38- "--ignore-vuln" ,
39- "CVE-2025-53000" ,
37+ # "--ignore-vuln",
38+ # "CVE-2025-53000",
4039 "--skip-editable" ,
4140 ]
4241
You can’t perform that action at this time.
0 commit comments