Page 1 of 1

[SOLVED] What version of Python does Renpy 8.0.1 support?

Posted: Tue Aug 02, 2022 9:36 pm
by span4ev
The site says that it works with version 3, but there are no details, for example, does it work with version 3.6 or 3.10..?
Support only 3.0 or all version 3 including addons ?

Re: What version of Python does Renpy 8.0.1 support?

Posted: Wed Aug 03, 2022 1:02 am
by Imperf3kt
The changelog suggests Python 3.9 is used

https://www.renpy.org/doc/html/changelo ... ren-py-8-0

Re: What version of Python does Renpy 8.0.1 support?

Posted: Wed Aug 03, 2022 1:55 am
by enaielei
Additionally, you can determine this through the console (Shift + o), then typing the code below.

Code: Select all

import sys; print(sys.version)