We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f13f634 commit 84e11f1Copy full SHA for 84e11f1
Dockerfile.tmpl
@@ -496,6 +496,7 @@ RUN rm -rf /opt/conda/lib/python3.10/site-packages/numpy* && \
496
flask \
497
# pycrypto is used by competitions team.
498
pycryptodome \
499
+ nbdev \
500
easyocr \
501
onnx \
502
tables \
tests/test_nbdev.py
@@ -0,0 +1,8 @@
1
+import unittest
2
+
3
+import nbdev
4
5
+class TestNbdev(unittest.TestCase):
6
+ def test(self):
7
+ self.assertGreater(len(nbdev.__version__), 0)
8
0 commit comments