Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,7 @@ RUN pip install flashtext && \
pip install pydegensac && \
pip install pytorch-lightning && \
pip install datatable && \
pip install sympy && \
/tmp/clean-layer.sh

# Tesseract and some associated utility packages
Expand Down
8 changes: 8 additions & 0 deletions tests/test_sympy.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import unittest

import numpy as np
import sympy

class TestSympy(unittest.TestCase):
def test_matrix(self):
self.assertEqual((2, 2), sympy.Matrix([[0, 1], [1, 0]]).shape)