bartdegoede / python-searchengine

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Supported Python Versions

NoisyWool opened this issue · comments

What are the supported python versions?

I saw an f-string, so does that mean python 3.6 is the minimum supported version?

Yeah, that would be a safe assumption. I've only really "tested" on 3.8, because this repository was intended to accompany the blog post for illustrative reasons :-)

Yeah, that would be a safe assumption. I've only really "tested" on 3.8, because this repository was intended to accompany the blog post for illustrative reasons :-)

It is a great blog post.


I have tried the following versions:

  • 2.7 obviously failed.
  • 3.5 failed due to the f-strings, type annotations, and dataclasses.
  • 3.6 failed due to the dataclasses.
  • 3.7 worked.
  • 3.8 worked.
  • 3.9 worked.