Skip to content

Commit

Permalink
debug setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
pramodk committed Nov 21, 2023
1 parent 2dea9aa commit ae954f5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']
Expand Down Expand Up @@ -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=[
Expand Down

0 comments on commit ae954f5

Please sign in to comment.