-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Package catala.1.0.0-alpha #28280
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
denismerigoux
wants to merge
3
commits into
ocaml:master
Choose a base branch
from
denismerigoux:opam-publish-catala.1.0.0-alpha
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Package catala.1.0.0-alpha #28280
Changes from 2 commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
opam-version: "2.0" | ||
synopsis: | ||
"Compiler and library for the literate programming language for tax code specification" | ||
description: | ||
"Catala is a domain-specific language for deriving faithful-by-construction algorithms from legislative texts. See https://catala-lang.org for more information" | ||
maintainer: "[email protected]" | ||
authors: [ | ||
"Denis Merigoux" | ||
"Nicolas Chataing" | ||
"Emile Rolley" | ||
"Louis Gesbert" | ||
"Aymeric Fromherz" | ||
"Alain Delaët-Tixeuil" | ||
"Raphaël Monat" | ||
] | ||
license: "Apache-2.0" | ||
homepage: "https://github.com/CatalaLang/catala" | ||
bug-reports: "https://github.com/CatalaLang/catala/issues" | ||
depends: [ | ||
"ocolor" {>= "1.3.0"} | ||
"bindlib" {>= "6.0"} | ||
"cmdliner" {>= "1.1.0"} | ||
"cppo" {>= "1"} | ||
"dates_calc" {>= "0.0.7"} | ||
"dune" {>= "3.13"} | ||
"js_of_ocaml-ppx" {= "4.1.0"} | ||
"menhir" {>= "20200211"} | ||
"menhirLib" {>= "20200211"} | ||
"ocaml" {>= "4.14.0"} | ||
"ocamlfind" {!= "1.9.5"} | ||
"ocamlgraph" {>= "1.8.8"} | ||
"re" {>= "1.11"} | ||
"sedlex" {>= "3.2"} | ||
"uucp" {>= "10"} | ||
"ubase" {>= "0.05"} | ||
"zarith" {>= "1.12"} | ||
"zarith_stubs_js" {>= "v0.14.1"} | ||
"yojson" {>= "2.1.2" } | ||
"crunch" {>= "3.0.0"} | ||
"alcotest" {>= "1.5.0"} | ||
"ninja_utils" {= "0.9.0"} | ||
"odoc" {with-doc} | ||
"ocamlformat" {cataladevmode & = "0.26.0"} | ||
"obelisk" {cataladevmode} | ||
"conf-npm" {cataladevmode} | ||
"conf-python-3-dev" {cataladevmode} | ||
"conf-openjdk" {cataladevmode} | ||
"cpdf" {cataladevmode} | ||
"conf-pandoc" {cataladevmode} | ||
"z3" {catalaz3mode} | ||
"conf-ninja" | ||
"otoml" {>= "1.0"} | ||
] | ||
depopts: ["z3"] | ||
conflicts: [ | ||
"z3" {< "4.8.11"} | ||
"base" {>= "v0.16.0"} | ||
] | ||
build: [ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
dev-repo: "git+https://github.com/CatalaLang/catala" | ||
depexts: [ | ||
["groff"] { with-doc } | ||
["python3-pip"] {cataladevmode & os-family = "debian"} | ||
["py3-pip" "py3-pygments"] {cataladevmode & os-distribution = "alpine"} | ||
["python-pygments"] {cataladevmode & os-family = "arch"} | ||
] | ||
url { | ||
src: | ||
"https://github.com/CatalaLang/catala/archive/refs/tags/v1.0.0-alpha.tar.gz" | ||
checksum: [ | ||
"md5=ca75801a6e5f24c9e93070773fdddb86" | ||
"sha512=c14b0f6d3e9eaed7d7297006a403268349afdddb8122311dcc79ff1be59886268db4f539b0a94510777112490fe9d769c4c3a51bedc15858ab89f272ee0cae6a" | ||
] | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems to be necessary:
Instad of
cataladevmode
you can usewith-dev-setup
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the tip! I now use
with-dev-steup
and made theconf-openjdk
dependency mandatory, let's see how it goes through the CI :)