Skip to content

Commit

Permalink
putting back comments and pinning jinja and docutils.
Browse files Browse the repository at this point in the history
  • Loading branch information
maxtheman committed Mar 23, 2024
1 parent c48b4f3 commit 54e0fcc
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,20 @@ urls = { Documentation = "https://github.com/life4/deal" }

[project.optional-dependencies]
all = [
"astroid>=3.1.0",
"deal-solver>=0.1.2",
"hypothesis",
"pygments",
"typeguard>=3.0.0",
"vaa>=0.2.1",
"astroid>=3.1.0", # for type inference in linter
"deal-solver>=0.1.2", # for formal verification
"hypothesis", # for property based testing
"pygments", # for syntax highlighting in exceptions
"typeguard>=3.0.0", # for runtime type checking in tests
"vaa>=0.2.1", # for supporting schemes (like marshmallow) as validators
]
integration = [
integration = [ # for integration testing
"astroid>=3.1.0",
"deal-solver>=0.1.2",
"hypothesis",
"pygments",
"typeguard<4.0.0",
"vaa>=0.2.1",
"sphinx>=4.5.0",
"flake8",
"marshmallow",
]
Expand All @@ -73,7 +72,14 @@ lint = [
"pygments",
"typeguard<4.0.0",
]
docs = ["m2r2", "myst-parser", "sphinx>=4.5.0", "sphinx-rtd-theme==0.5.*"]
docs = [
"m2r2", # markdown support in docstrings for sphinx
"Jinja2<3.1", # jinja2 is not supported in sphinx 3
"docutils==0.17.*", # docutils above 0.17.x is not supported in sphinx 3.5
"myst-parser", # markdown support for dcs in sphinx
"sphinx==3.5.*", # documentation
"sphinx-rtd-theme==0.5.*", # theme for documentation
]

[project.entry-points."flake8.extension"]
DEL = "deal.linter:Checker"
Expand Down

0 comments on commit 54e0fcc

Please sign in to comment.