rouge icon indicating copy to clipboard operation
rouge copied to clipboard

Error for Python TOML Pipfile with a Pinned Version

Open RamVasuthevan opened this issue 1 year ago • 0 comments

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.

RamVasuthevan avatar Sep 12 '24 21:09 RamVasuthevan