Use platform-independent Python script to allow all Python versions for 3.9 builds

This commit is contained in:
Micah Jerome Ellison 2020-08-08 12:37:54 -07:00
parent baaf2bef18
commit 9fb47e57ff
2 changed files with 11 additions and 3 deletions

View file

@ -0,0 +1,8 @@
import toml
pyproject = toml.load("pyproject.toml")
pyproject['tool']['poetry']['dependencies']['python'] = "*"
with open("pyproject.toml", "w") as toml_file:
toml.dump(pyproject, toml_file)