From d2fd8a234c4d151130b77b868e6d4b529b1d4719 Mon Sep 17 00:00:00 2001 From: Nikita Almakov Date: Sun, 14 Jul 2024 23:34:47 +0300 Subject: [PATCH] single source version + fixing sdist --- .ignore | 1 + Makefile | 10 ++++++++++ pyproject.toml | 2 +- setup.cfg | 1 + 4 files changed, 13 insertions(+), 1 deletion(-) diff --git a/.ignore b/.ignore index 1723f67..4bf2a79 100644 --- a/.ignore +++ b/.ignore @@ -1,5 +1,6 @@ tags dist/ +build/ pip-wheel-metadata/ src/convtools.egg-info/ tmp/ diff --git a/Makefile b/Makefile index 62f2ac1..a0dd231 100644 --- a/Makefile +++ b/Makefile @@ -63,3 +63,13 @@ test: test-py3.6 test-py3.7 test-py3.8 test-py3.9 test-py3.10 test-py3.11 test-p # /opt/python/cp310-cp310/bin/pip install -e . # /opt/python/cp310-cp310/bin/pip install --force-reinstall dist/convtools-1.11.0-cp310-abi3-linux_x86_64.whl # /opt/python/cp310-cp310/bin/pytest +# +# +# /opt/python/cp310-cp310/bin/pip install pytest pytest-cov convtools +# /opt/python/cp310-cp310/bin/pytest +# +# /opt/python/cp313-cp313/bin/pip install pytest pytest-cov convtools +# /opt/python/cp313-cp313/bin/pytest +# +# /opt/python/cp36-cp36m/bin/pip install pytest pytest-cov convtools +# /opt/python/cp36-cp36m/bin/pytest diff --git a/pyproject.toml b/pyproject.toml index 92cb526..2d3a24e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ exclude = ["tests*"] [project] name = "convtools" -version = "1.12.0" +dynamic = ["version"] description = "dynamic, declarative data transformations with automatic code generation" readme = "README.md" diff --git a/setup.cfg b/setup.cfg index 4df97d7..2a0cc2f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,6 @@ [metadata] name = convtools +version = attr: convtools.__version__ [options] package_dir=