rouge
rouge copied to clipboard
Error for Python TOML Pipfile with a Pinned Version
Name of the lexer TOML
Code sample Below is a simple Python TOML Pipfile with a pinned version
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
requests = "==2.25.1"
beautifulsoup4 = "*"
[dev-packages]
[requires]
python_version = "3.12"
The 2nd dot in the version of requests is marked as an error. This the Pipfile generated by pipenv. I belive that it is valid TOML and that there should not be an error.