openfst-python
openfst-python copied to clipboard
Self-contained Python package for OpenFst
The latest version on PyPI is 1.7.3, which is very old and only supports up to Python 3.7. Is it possible to publish newer versions on PyPI?
PEP-518 becomes very essential nowadays. It prevents multi-step pip install when building from source: ```sh # before pip install setuptools requests cython pip install openfst-python # after pip install openfst-python...
>>> import openfst_python as fst >>> f = fst.Fst() Traceback (most recent call last): File "", line 1, in File "pywrapfst.pyx", line 1617, in pywrapfst.Fst.__init__ AttributeError: 'pywrapfst.Fst' object has no...
I just run the example code and create two FSTs. Then I use intersect operation on these two FSTs and got the following error: ERROR: IntersectFst: Input FSTs are not...
I am using docker container to install all dependencies. It looks as follows: ```dockerfile FROM ubuntu:latest WORKDIR /app RUN apt-get update -y \ && apt-get install -y \ git \...
Hi, The latest build seems to be failing, as a result the latest version is not on pypi. Could you please fix that? -Arpit