File: prune-setuptools-git-ls.patch

package info (click to toggle)
compreffor 0.5.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 444 kB
  • sloc: python: 1,838; cpp: 1,065; makefile: 34
file content (24 lines) | stat: -rw-r--r-- 615 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Description: Remove setuptools_git_ls_files as install-req as this is un-needed
Author: Nilesh Patra <nilesh@debian.org>
Last-Update: 2022-11-16
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -3,7 +3,6 @@
     "setuptools",
     "wheel",
     "setuptools_scm",
-    "setuptools_git_ls_files",
     "cython",
 ]
 
--- a/setup.py
+++ b/setup.py
@@ -152,7 +152,7 @@
         'build_ext': custom_build_ext,
     },
     setup_requires=(
-        ["setuptools_scm", "setuptools_git_ls_files"] + pytest_runner + wheel
+        ["setuptools_scm"] + pytest_runner + wheel
     ),
     tests_require=[
         'pytest>=2.8',