mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-20 13:08:31 +02:00
8 lines
195 B
Python
8 lines
195 B
Python
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)
|