Python version
Closed this issue · 3 comments
turbomam commented
There are inconsistent minimum Python version in various files. This is kinda in flux as I prepare the PRs for branches issue_84_reintegrate
and issue-69-pypi
. As part of that or immediately after it... change everything to 3.x? 3.7? 3.8?
turbomam commented
I think this is the state in main
as of now:
setup.cfg
sayspython_requires = >=3.7
setup.py
saysif sys.version_info < (3, 7, 0):
- in the branches above, I modified the reporting of warning string due to a error when trying to run
setup.py
under 2.7
- in the branches above, I modified the reporting of warning string due to a error when trying to run
tox.ini
saysenvlist = py37, py38, py39
./Pipfile
sayspython_version = "3.8"
?
gaurav commented
As far as I know, we've now standardized to a minimum version of Python 3.7 everywhere.