UltimaHoarder / UltimaScraper

Scrape all the media from an OnlyFans account - Updated regularly
GNU General Public License v3.0
4k stars 608 forks source link

Version check incorrectly converts Python 3.10 to 3.1 and states that 3.9 is required. #1942

Closed Rebeljah closed 2 years ago

Rebeljah commented 2 years ago

https://github.com/DIGITALCRIMINAL/OnlyFans/blob/d1a5f7112eb95145fbfa9a3c58e3a49d69cbd10a/tests/main_test.py#L12

python_version = float(python_version) Incorrectly converts "3.10" to 3.1. This can be fixed by using tuple comparison rather than converting the version to a float.

Rebeljah commented 2 years ago

duplicate #1535