igel icon indicating copy to clipboard operation
igel copied to clipboard

Installation Error importlib_metadata

Open markus-renezeder opened this issue 3 years ago • 1 comments

  • igel version: 1.0.0
  • Python version: 3.8.10
  • Operating System: Ubuntu 20.04

Description

Installation fails with the following error: markdown 3.4.1 has requirement importlib-metadata>=4.4; python_version < "3.10", but you'll have importlib-metadata 1.7.0 which is incompatible.

What I Did

I tryed to install importlib_metadata 4.4 but I get the following error: igel 1.0.0 has requirement importlib_metadata<2.0.0,>=1.6.0; python_version >= "3.8", but you'll have importlib-metadata 4.4.0 which is incompatible.

Paste the command(s) you ran and the output. If there was a crash, please include the traceback here. pip install -U igel pip install -U importlib_metadata==4.4

markus-renezeder avatar Dec 09 '22 14:12 markus-renezeder

Hi! I’ve submitted a pull request that addresses this issue by restricting the installation of importlib_metadata to only Python versions less than 3.10 in the dependencies. This should resolve the conflict with markdown and prevent installation errors for users on Python 3.8 and above. You can find the PR here: #116 Please let me know if you have any feedback or if further changes are needed. Thanks!

HeerakKashyap avatar Jun 04 '25 23:06 HeerakKashyap