You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The logic in the project_setup makes it so that you are required to have python 3.7 installed, even though the language suggest that you could run it with higher versions. This is not a big problem, either make it clear that python 3.7 is the only supported version or change the logic so that is includes python_version > 3.7.
If the solution is to make clear that only python 3.7 is supported then people could be warned not to change the requirements on the Pipfile fo force to work with python 3.8.
To Reproduce
Steps to reproduce the behavior:
Un-install python3.7
install python3.8
setup stops and a message shows up
"Please install Python version 3.7.2 or greater"
Expected behavior
work with any version of python that is higher than 3.7
The text was updated successfully, but these errors were encountered:
Para nosotros toda contribución es importante. ¡Gracias por darnos de su tiempo y hacer tu primera contribución! Estaremos dandole un vistazo pronto.' first issue
jycordero
changed the title
'"
"project_setup" incompatible with python_version > 3.7
Mar 9, 2021
Thanks for reporting this! I'm up for improving for sure. There's no real reason to pin specifically to 3.7, but I'd like to enforce >=3.7 somewhere(maybe version check in manage.py for example)
Pipenv makes this hard, so we could remove the python_version from there. We'd also have to tweak that project-setup script to account for that.
Describe the bug
The logic in the project_setup makes it so that you are required to have python 3.7 installed, even though the language suggest that you could run it with higher versions. This is not a big problem, either make it clear that python 3.7 is the only supported version or change the logic so that is includes python_version > 3.7.
If the solution is to make clear that only python 3.7 is supported then people could be warned not to change the requirements on the Pipfile fo force to work with python 3.8.
To Reproduce
Steps to reproduce the behavior:
Un-install python3.7
install python3.8
setup stops and a message shows up
Expected behavior
work with any version of python that is higher than 3.7
The text was updated successfully, but these errors were encountered: