this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[new release] pyre-ast (0.1.11)

CHANGES:

- Fixed a major bug in 0.1.10 where the parser cannot differentiate `async def` and `def`.

Jia Chen 38e9083b ccefad27

+48
+48
packages/pyre-ast/pyre-ast.0.1.11/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Full-fidelity Python parser in OCaml" 3 + description: 4 + "pyre-ast is an OCaml library to parse Python source files into abstract syntax trees. Under the hood, it relies on the CPython parser to do the parsing work and therefore the result is always 100% compatible with the official CPython implementation." 5 + maintainer: ["grievejia@gmail.com"] 6 + authors: ["Jia Chen"] 7 + license: "MIT" 8 + homepage: "https://github.com/grievejia/pyre-ast" 9 + doc: "https://grievejia.github.io/pyre-ast/doc" 10 + bug-reports: "https://github.com/grievejia/pyre-ast/issues" 11 + depends: [ 12 + "dune" {>= "2.8"} 13 + "base" {>= "v0.14.1"} 14 + "ppx_sexp_conv" {>= "v0.14.0"} 15 + "ppx_compare" {>= "v0.14.0"} 16 + "ppx_hash" {>= "v0.14.0"} 17 + "ppx_deriving" {>= "5.2.1"} 18 + "ppx_make" {>= "0.2.1"} 19 + "stdio" {with-test & >= "v0.14.0"} 20 + "sexplib" {with-test & >= "v0.14.0"} 21 + "cmdliner" {with-test & >= "1.1.0"} 22 + "odoc" {with-doc} 23 + ] 24 + build: [ 25 + ["dune" "subst"] {dev} 26 + [ 27 + "dune" 28 + "build" 29 + "-p" 30 + name 31 + "-j" 32 + jobs 33 + "@install" 34 + "@runtest" {with-test} 35 + "@doc" {with-doc} 36 + ] 37 + ] 38 + dev-repo: "git+https://github.com/grievejia/pyre-ast.git" 39 + available: [ os-family != "windows" ] 40 + url { 41 + src: 42 + "https://github.com/grievejia/pyre-ast/releases/download/0.1.11/pyre-ast-0.1.11.tbz" 43 + checksum: [ 44 + "sha256=c344def5b0360185b404f99cacdb250b7061e38ed547cb871b7f9398c94c4900" 45 + "sha512=4579de8085f42757224744f5980034ca589b2bd6eb77f7966a277c63011201fb2a260f730691aecd4e8c21cf2d1ae98b741277649ec965b256c4e333722e055f" 46 + ] 47 + } 48 + x-commit-hash: "07998e061535e1e7baee6ac7b9d4ded3679a7825"