Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1004,6 +1004,7 @@ jobs:
cd amber && pytest -m "not integration" --cov=src/main/python --cov-report=xml --junit-xml=junit.xml -sv
- name: Upload pyamber coverage to Codecov
if: matrix.python-version == '3.12' && always()
continue-on-error: true
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand All @@ -1016,6 +1017,7 @@ jobs:
# rather than `always()` so we still upload on test failure (the
# whole point of Test Analytics) but skip cancelled runs.
if: matrix.python-version == '3.12' && !cancelled()
continue-on-error: true
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion amber/LICENSE-binary-python
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ Python packages:
- sympy==1.14.0
- threadpoolctl==3.6.0
- tifffile==2026.6.1
- torch==2.12.1
- torch==2.13.0
- zstandard==0.25.0

--------------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions amber/operator-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ pillow==12.2.0

# Pin torch to the CPU wheel on Linux x86_64 to avoid the NVIDIA CUDA deps.
--extra-index-url https://download.pytorch.org/whl/cpu
torch==2.12.1+cpu ; platform_system == "Linux" and platform_machine == "x86_64"
torch==2.12.1 ; platform_system != "Linux" or platform_machine != "x86_64"
torch==2.13.0+cpu ; platform_system == "Linux" and platform_machine == "x86_64"
torch==2.13.0 ; platform_system != "Linux" or platform_machine != "x86_64"

scikit-learn==1.7.2
transformers==5.3.0
Expand Down
Loading