mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 23:12:02 +08:00
8c3bc3fcf9
The release tarball already contains a pre-generated _version.py with the version hardcoded, so versioneer is not needed at build time. Patch pyproject.toml to only require setuptools and remove PKG_BUILD_DEPENDS:=python-versioneer/host. Remove python-versioneer package as it is no longer needed. Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
16 lines
276 B
Diff
16 lines
276 B
Diff
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -1,11 +1,6 @@
|
|
# Copyright (c) Twisted Matrix Laboratories.
|
|
# See LICENSE for details.
|
|
|
|
-import versioneer
|
|
-
|
|
from setuptools import setup
|
|
|
|
-setup(
|
|
- version=versioneer.get_version(),
|
|
- cmdclass=versioneer.get_cmdclass(),
|
|
-)
|
|
+setup()
|