Yair Morgenstern

Results 448 comments of Yair Morgenstern

Second image is just a screenshot of the game Neither can help us resolve the issue

Cython released [a major release (3.0)](https://pypi.org/project/Cython/#history) last week. This changed some major things, and is almost certainly the cause of this error https://cython.readthedocs.io/en/latest/src/userguide/migrating_to_cy30.html The solution would be to limit Cython...

Installing a specific cython version locally before build *does not* - unfortunately - mean that Pomegranate will use that version to build... What version *is* working for you?

Sorry, only now do I understand what's going on Pomegranate *used* to use Cython to compile, the new versions don't The Cython was required from https://github.com/jmschrei/pomegranate/blob/272039bf3fa208a9ec0f67b53f03cea280abcc1b/setup.py (in setup_requires section) So...

I can't, only the repo owner can upload packages to pypi :/ But what I tried was to fork this repo and make the change there, so you can pip...

It would not let me `pip install Cython` for any version before 0.28 because of "InvalidSyntax" errors :/ Installing Cython 0.28 first did nothing - same error

@kkchau I see! That explains why it was failing - I was installing using Poetry, and there it probably takes the build instructions from the pyproject.toml file... Nice catch! @jmschrei...

For now what I did in my pyproject.toml is: ```toml pomegranate = { git = "https://github.com/yairm210/pomegranate", branch = "0.14.8" } ``` and it works :) So as a temporary solution...