mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 08:38:32 +02:00
8 lines
No EOL
197 B
Python
8 lines
No EOL
197 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) |