1 parent 488f54e commit c34ad8cCopy full SHA for c34ad8c
2 files changed
.github/workflows/ci.yml
@@ -58,10 +58,10 @@ jobs:
58
- uses: actions/setup-python@v4
59
with:
60
python-version: '3.11'
61
- - name: Install maturin
62
- run: pip install maturin
+ - name: Install maturin and cffi
+ run: pip install maturin cffi
63
- name: Build python bindings
64
- run: maturin build
+ run: maturin build --features python-bindings
65
66
cli-e2e:
67
runs-on: ubuntu-latest
pyproject.toml
@@ -12,3 +12,4 @@ license = {text = "MIT OR Apache-2.0"}
12
13
[tool.maturin]
14
module-name = "rosalind_py"
15
+features = ["python-bindings"]
0 commit comments