We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44d70eb commit 6fe881cCopy full SHA for 6fe881c
pix2tex/cli.py
@@ -12,7 +12,7 @@
12
import yaml
13
import re
14
15
-with suppress(ImportError):
+with suppress(ImportError, AttributeError):
16
import readline
17
18
import numpy as np
setup.py
@@ -28,7 +28,7 @@
28
29
setuptools.setup(
30
name='pix2tex',
31
- version='0.0.29',
+ version='0.0.30',
32
description='pix2tex: Using a ViT to convert images of equations into LaTeX code.',
33
long_description=long_description,
34
long_description_content_type='text/markdown',
@@ -65,6 +65,7 @@
65
'pandas>=1.0.0',
66
'timm==0.5.4',
67
'albumentations>=0.5.2',
68
+ 'pyreadline3>=3.4.1; platform_system=="Windows"',
69
],
70
extras_require={
71
'all': gui+api+train+highlight,
0 commit comments