nixpkgs/pkgs/development/python-modules/debugpy/hardcode-version.patch

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.4 KiB
Diff
Raw Normal View History

2020-11-17 20:50:06 -05:00
diff --git a/setup.py b/setup.py
index 1bfba237..414bb4d5 100644
2020-11-17 20:50:06 -05:00
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,6 @@ import sys
2020-11-17 20:50:06 -05:00
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
-import versioneer # noqa
del sys.path[0]
@@ -145,13 +144,13 @@ if __name__ == "__main__":
if platforms is not None:
extras["platforms"] = platforms
2020-11-17 20:50:06 -05:00
- cmds = versioneer.get_cmdclass()
+ cmds = {}
override_build(cmds)
override_build_py(cmds)
2020-11-17 20:50:06 -05:00
setuptools.setup(
2020-11-17 20:50:06 -05:00
name="debugpy",
- version=versioneer.get_version(),
+ version="@version@",
description="An implementation of the Debug Adapter Protocol for Python", # noqa
long_description=long_description,
long_description_content_type="text/markdown",
diff --git a/src/debugpy/public_api.py b/src/debugpy/public_api.py
index 9d0f705a..ee0b26ca 100644
--- a/src/debugpy/public_api.py
+++ b/src/debugpy/public_api.py
@@ -7,8 +7,6 @@ from __future__ import annotations
import functools
import typing
2020-11-17 20:50:06 -05:00
-from debugpy import _version
-
2020-11-17 20:50:06 -05:00
# Expose debugpy.server API from subpackage, but do not actually import it unless
# and until a member is invoked - we don't want the server package loaded in the
@@ -191,4 +189,4 @@ def trace_this_thread(__should_trace: bool):
"""
2020-11-17 20:50:06 -05:00
-__version__: str = _version.get_versions()["version"]
+__version__: str = "@version@"