Wheel still installs outdated gensim==4.2, causing errors despite fix in repo
Description: First, thank you for the great work on this package! I noticed that while the issue with gensim==4.2 appears to be fixed in the GitHub source (by updating to gensim==4.3.2
), the wheel distributed via PyPI still enforces gensim==4.2. This version causes compatibility issues or runtime errors in newer environments. Steps to reproduce: Install the package via the .whl file or pip install your package Notice that gensim==4.2 gets installed as a hard requirement This leads to errors. Expected behavior: The wheel should reflect the updated dependency constraint gensim>=4.3, as seen in the latest GitHub version. Environment: OS: Window11/ MAC Python: 3.8.18 pip: 25.0.1 Possible Solution: Rebuild and publish a new wheel (.whl) with the corrected dependencies, or update the PyPI package if applicable.