mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-07-12 18:06:14 +02:00
Use platform-independent Python script to allow all Python versions for 3.9 builds
This commit is contained in:
parent
baaf2bef18
commit
9fb47e57ff
2 changed files with 11 additions and 3 deletions
8
.build/allow_all_python_version.py
Normal file
8
.build/allow_all_python_version.py
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue