Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
uses: actions/checkout@v4

- name: Setup Environment
uses: prefix-dev/setup-pixi@v0.8.1
uses: prefix-dev/setup-pixi@v0.9.0
with:
pixi-version: v0.47.0
pixi-version: v0.54.0
cache: false
cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }}

Expand All @@ -43,9 +43,9 @@ jobs:
uses: actions/checkout@v4

- name: Setup Environment
uses: prefix-dev/setup-pixi@v0.8.1
uses: prefix-dev/setup-pixi@v0.9.0
with:
pixi-version: v0.47.0
pixi-version: v0.54.0
cache: false
cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }}

Expand Down
2 changes: 1 addition & 1 deletion esm/layers/attention.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from esm.layers.rotary import RotaryEmbedding, TritonRotaryEmbedding

try:
from flash_attn import flash_attn_varlen_qkvpacked_func
from flash_attn import flash_attn_varlen_qkvpacked_func # type: ignore
except (ImportError, RuntimeError):
flash_attn_varlen_qkvpacked_func = None

Expand Down
4 changes: 2 additions & 2 deletions tests/oss_pytests/test_oss_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def test_oss_esm3_client():
def test_oss_esmc_client():
assert URL is not None

sequence = "MALWMRLLPLLALLALAVUUPDPAAA"
sequence = "MALWMRLLPLLALLALAVPDPAAA"
model = "esmc-300m-2024-12"
esmc_client = client(model=model, url=URL, token=API_TOKEN)

Expand All @@ -75,7 +75,7 @@ def test_oss_esmc_client():
def test_oss_sequence_structure_forge_inference_client():
assert URL is not None

sequence = "MALWMRLLPLLALLALAVUUPDPAAA"
sequence = "MALWMRLLPLLALLALAVPDPAAA"
model = "esm3-small-2024-03"
client = SequenceStructureForgeInferenceClient(
model=model, url=URL, token=API_TOKEN
Expand Down
Loading