From 44a1bce55672a0ed303d01c8d8d0311d5dea6bb5 Mon Sep 17 00:00:00 2001 From: Eric Wolf Date: Mon, 22 Aug 2022 22:03:30 +0200 Subject: [PATCH] fix license display, again --- lambda_calculus/__init__.py | 2 +- pyproject.toml | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/lambda_calculus/__init__.py b/lambda_calculus/__init__.py index 571dd1b..56b1036 100644 --- a/lambda_calculus/__init__.py +++ b/lambda_calculus/__init__.py @@ -4,7 +4,7 @@ from .terms import Variable, Abstraction, Application -__version__ = "1.10.1" +__version__ = "1.10.2" __author__ = "Eric Niklas Wolf" __email__ = "eric_niklas.wolf@mailbox.tu-dresden.de" __all__ = ( diff --git a/pyproject.toml b/pyproject.toml index e55c79f..9ad893d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "lambda_calculus" -version = "1.10.1" +version = "1.10.2" description = "Implementation of the Lambda calculus" requires-python = ">=3.10" keywords = [] @@ -18,9 +18,6 @@ classifiers = [ file = "README.md" content-type = "text/markdown" -[project.license] -text = "GNU General Public License v3 (GPLv3)" - [[project.authors]] name = "Eric Niklas Wolf" email = "eric_niklas.wolf@mailbox.tu-dresden.de"