Skip to content

Commit d557b4b

Browse files
committed
Merge branch 'develop' into fix/freqai_torch
2 parents e98959f + fd858b7 commit d557b4b

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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 📦

docs/strategy-advanced.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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)

tests/test_pip_audit.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)