Skip to content

Commit d5c772f

Browse files
committed
Restrict causal_conv1d version < 1.2.0
1 parent 3854ad8 commit d5c772f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ with an efficient hardware-aware design and implementation in the spirit of [Fla
1313

1414
## Installation
1515

16-
- `pip install causal-conv1d>=1.1.0`: an efficient implementation of a simple causal Conv1d layer used inside the Mamba block.
16+
- `pip install causal-conv1d>=1.1.0,<1.2.0`: an efficient implementation of a simple causal Conv1d layer used inside the Mamba block.
1717
- `pip install mamba-ssm`: the core Mamba package.
1818

1919
It can also be built from source with `pip install .` from this repository.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,6 @@ def run(self):
271271
"einops",
272272
"triton",
273273
"transformers",
274-
"causal_conv1d>=1.1.0",
274+
"causal_conv1d>=1.1.0,<1.2.0",
275275
],
276276
)

0 commit comments

Comments
 (0)