Skip to content

Commit 7029c75

Browse files
realratchetRatchet
authored andcommitted
nimbling test
1 parent 7a14f99 commit 7029c75

37 files changed

+20
-11
lines changed

.gitignore

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,8 @@
99
*.pyc
1010
tests/new.zip
1111
__pycache__
12-
*/_nimlite/*
13-
!*/_nimlite/**.nim
14-
!*/_nimlite/funcs/
15-
!*/_nimlite/includes/
16-
!*/_nimlite/includes/**.nim
17-
!*/_nimlite/funcs/column_selector/**.nim
18-
!*/_nimlite/**.py
19-
!*/_nimlite/**.pyi
12+
/nimlite/*.so
13+
/nimlite/nimtest
2014

2115
# Notebook checkpoints
2216
.ipynb_checkpoints/

build_nim.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ fi
1919

2020
if [ $is_release = true ]
2121
then
22-
nim c --app:lib -d:release -d:danger --out:tablite/_nimlite/nimlite.so tablite/_nimlite/nimlite.nim
22+
nim c --app:lib -d:release -d:danger --out:nimlite/libnimlite.so nimlite/libnimlite.nim
2323
echo "Built release."
2424
else
25-
nim c --app:lib -d:debug --out:tablite/_nimlite/nimlite.so tablite/_nimlite/nimlite.nim
25+
nim c --app:lib -d:debug --out:nimlite/libnimlite.so nimlite/libnimlite.nim
2626
echo "Built debug."
2727
fi

nimlite.nim

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# This is a stub file for other modules to import

nimlite.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.1.0"
4+
author = "Ratchet"
5+
description = "Utilities for tablite to work with nim"
6+
license = "MIT"
7+
# srcDir = "nimlite"
8+
9+
10+
# Dependencies
11+
12+
requires "nim >= 2.0.0"
13+
requires "nimpy >= 0.2.0"
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)