Fallback if toml file parsing failed (#246)

This commit is contained in:
Kevin Stillhammer 2025-01-16 16:54:33 +01:00 committed by GitHub
parent b5f58b2abc
commit 14dc0be27c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 45 additions and 2 deletions

View file

@ -0,0 +1 @@
3.11

View file

@ -0,0 +1,6 @@
def main():
print("Hello from malformed-pyproject-toml-project!")
if __name__ == "__main__":
main()

View file

@ -0,0 +1,9 @@
[project]
name = "malformed-pyproject-toml-project"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
dependencies = []
[malformed-toml