File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed
Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ What should work:
4040What may be broken:
4141
4242* Losing precision from Python's 64 bits Integer to Node's Number
43+ * If you're using node v0.6.x (please upgrade) you'll have to manually compile with node-gyp
4344
4445What's to be done:
4546
@@ -54,6 +55,8 @@ What would be realy awesome:
5455
5556## History
5657
58+ * ** v0.0.4** : 2013-10-09
59+ - use the bindings module to load the native extension
5760* ** v0.0.3** : 2013-07-06
5861 - Refactor
5962 - Better type conversion & error handling
Original file line number Diff line number Diff line change 11
2- module . exports = require ( './build/Release/ binding.node' ) ;
2+ module . exports = require ( 'bindings' ) ( ' binding.node')
33
Original file line number Diff line number Diff line change 11{
22 "name" : " node-python" ,
3- "version" : " 0.0.3 " ,
3+ "version" : " 0.0.4 " ,
44 "description" : " Call python stuff from nodejs" ,
55 "main" : " index.js" ,
66 "repository" : {
2828 },
2929 "license" : " BSD" ,
3030 "gypfile" : true ,
31- "readmeFilename" : " README.md"
31+ "readmeFilename" : " README.md" ,
32+ "dependencies" : {
33+ "bindings" : " ~1.1.1"
34+ }
3235}
You can’t perform that action at this time.
0 commit comments