Skip to content

Commit 14dfeb8

Browse files
authored
some more nim prep (#295)
1 parent 6a24cad commit 14dfeb8

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
with:
2929
nim-version: '2.0.8'
3030
repo-token: ${{ secrets.GITHUB_TOKEN }}
31-
- name: Install Nimpy
31+
- name: Install Nim dependencies
3232
run: |
33-
nimble install nimpy
33+
nimble install
3434
- name: Install dependencies
3535
run: |
3636
python -m pip install uv

alphafold3_pytorch.nimble

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Package
2+
3+
version = "0.0.1"
4+
author = "Phil Wang"
5+
description = "Alphafold3 Utils"
6+
license = "MIT"
7+
8+
# Dependencies
9+
10+
requires "nim >= 2.0.8"
11+
requires "nimpy >= 0.2.0"
12+
requires "arraymancer"
13+
requires "malebolgia"

install-nim.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@
22

33
curl https://nim-lang.org/choosenim/init.sh -sSf | sh
44
choosenim 2.0.8
5-
nimble install nimpy

0 commit comments

Comments
 (0)