From 41bcf15f537ae221210d561f0b2d44dd4f3a1781 Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Wed, 7 Dec 2022 23:06:45 +0000 Subject: [PATCH] Let Flit dynamically determine the package version This makes it possible to single-source the package version. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index fb60c83a..9a145424 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "flit_core.buildapi" [project] name = "packaging" description = "Core utilities for Python packages" -version = "21.4.dev0" +dynamic = ["version"] readme = "README.rst" requires-python = ">=3.7" authors = [{name = "Donald Stufft", email = "donald@stufft.io"}]