build(deps): bump pyparsing from 3.1.2 to 3.1.4 by dependabot[bot] · Pull Request #2895 · RDFLib/rdflib (original) (raw)

Bumps pyparsing from 3.1.2 to 3.1.4.

Changelog

Sourced from pyparsing's changelog.

Version 3.1.4 - August, 2024

Version 3.1.3 - August, 2024

end_punc = "." | ("!" + Tag("enthusiastic")))
greeting = "Hello" + Word(alphas) + end_punc
result = greeting.parse_string("Hello World.")
print(result.dump())
result = greeting.parse_string("Hello World!")
print(result.dump())
prints: ['Hello', 'World', '.']
['Hello', 'World', '!']

`

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR: