From 44cec67e71d2fe0db742de5492d53720d88e5f00 Mon Sep 17 00:00:00 2001 From: Eric Wolf Date: Tue, 4 Oct 2022 17:37:37 +0200 Subject: [PATCH] fix documentation build --- lambda_calculus/__init__.py | 2 +- pyproject.toml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lambda_calculus/__init__.py b/lambda_calculus/__init__.py index fd54627..d61113e 100644 --- a/lambda_calculus/__init__.py +++ b/lambda_calculus/__init__.py @@ -4,7 +4,7 @@ from .terms import Variable, Abstraction, Application -__version__ = "2.2.2" +__version__ = "2.2.3" __author__ = "Eric Niklas Wolf" __email__ = "eric_niklas.wolf@mailbox.tu-dresden.de" __all__ = ( diff --git a/pyproject.toml b/pyproject.toml index 285b0d1..d51a855 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "lambda_calculus" -version = "2.2.2" +version = "2.2.3" description = "Implementation of the Lambda calculus" requires-python = ">=3.10" keywords = [] @@ -47,6 +47,7 @@ warn_unreachable = true [tool.sphinx-pyproject] project = "lambda_calculus" +copyright = "2022 Eric Wolf" html_theme = "sphinx_rtd_theme" extensions = [ "sphinx.ext.intersphinx",