From ae954f5d078a8b9857255935f283155344959dee Mon Sep 17 00:00:00 2001 From: Pramod S Kumbhar Date: Tue, 21 Nov 2023 14:25:06 +0100 Subject: [PATCH] debug setup.py --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b3a9b66658..18a4f164a0 100644 --- a/setup.py +++ b/setup.py @@ -28,6 +28,7 @@ .decode() ) __version__ = v[: v.rfind("-")].replace("-", ".") if "-" in v else v + print("VERSION INFO FROM GIT:: ", v, __version__) # allow to override version during development/testing if "NMODL_WHEEL_VERSION" in os.environ: __version__ = os.environ['NMODL_WHEEL_VERSION'] @@ -111,7 +112,7 @@ def run(self, *args, **kwargs): docs=Docs, doctest=get_sphinx_command, buildhtml=get_sphinx_command, ), zip_safe=False, - # myst_parser 2.0.0 want sphinx >= 6 but it leads to incompatibily with sphinxcontrib-applehelp and + # myst_parser 2.0.0 want sphinx >= 6 but it leads to incompatibily with sphinxcontrib-applehelp and # sphinxcontrib-htmlhelp that want PEP-517 support instead of setup.py (name clash with '-' and '.') # So we pin low versions of packages setup_requires=[