bnm3k / polars-fuzzy-match

Polars extension for fzf-style fuzzy matching
MIT License
20 stars 2 forks source link

minimum python version? #3

Closed abubelinha closed 8 months ago

abubelinha commented 8 months ago

I am trying to make fuzzy matches on Python 3.8 (Windows 7 64 bit), with polars 0.20.13 already installed

Any way of installing this package? Looks like I need a higher Python version but that's the highest one I can use with this OS. I wonder if there is any workaround

Thanks @abubelinha

bnm3k commented 8 months ago

I don't think this package uses any feature that's specific to higher python version. Only work around off the top of my head is to lower the python version requirement. Let me attempt it and see if anything breaks

bnm3k commented 8 months ago

Can you try out 0.1.3, I've lowered the python version requirement to 3.8, it should work. Update: I've just tested with python 3.8.13 albeit on Linux and it works: pip install polars-fuzzy-match==0.1.3

abubelinha commented 8 months ago

I still couldn't try it on Python 3.8 (Windows 7 64 bits).

But I can tell you pip install polars-fuzzy-match was also failing in another computer (Python 3.9, Windows 10) ... and now it just works:

BTW I didn't specify 0.1.3 version but I guess it didn't matter.

abubelinha commented 8 months ago

Off-topic:

In README you describe Fzf-style search syntax "is taken almost verbatim from the Fzf README".

Are you meaning this project? https://github.com/junegunn/fzf?#search-syntax

abubelinha commented 8 months ago

OK, I can confirm successful installation on Python 3.8 (Windows 7 64 bits).

Thanks a lot for your help