add py3.8 to freeze list

and remove 3.5 which is no longer being refrozen
pull/840/head
Min RK 2020-01-28 13:02:42 +01:00
rodzic fb995027de
commit 4f1dcd8421
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -119,7 +119,7 @@ def set_python(py_env_file, py):
if __name__ == "__main__":
# allow specifying which Pythons to update on argv
pys = sys.argv[1:] or ("2.7", "3.5", "3.6", "3.7")
pys = sys.argv[1:] or ("2.7", "3.6", "3.7", "3.8")
for py in pys:
env_file = pathlib.Path(str(ENV_FILE_T).format(py=py))
set_python(env_file, py)