From c34f3d01eb258ca6f97fc72d7bf8162aa40b4cab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Budai?= Date: Tue, 6 Aug 2024 11:00:39 +0200 Subject: [PATCH] Drop depedency on hatch-vcs We want to remove it from EL10, we don't need automatic versions there. --- pyproject.toml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 410c5de..d7c3cb0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,12 @@ [build-system] build-backend = "hatchling.build" requires = [ - "hatch-vcs", "hatchling", ] [project] name = "prettytable" +version = "3.6.0" description = "A simple Python library for easily displaying tabular data in a visually appealing ASCII table format" readme = "README.md" license = {text = "BSD (3 clause)"} @@ -17,9 +17,6 @@ dependencies = [ 'importlib-metadata; python_version < "3.8"', "wcwidth", ] -dynamic = [ - "version", -] classifiers = [ "License :: OSI Approved :: BSD License", "Programming Language :: Python", @@ -46,12 +43,5 @@ tests = [ Homepage = "https://github.com/jazzband/prettytable" Source = "https://github.com/jazzband/prettytable" - -[tool.hatch] -version.source = "vcs" - -[tool.hatch.version.raw-options] -local_scheme = "no-local-version" - [tool.isort] profile = "black" -- 2.45.2