diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-03-02 08:36:47 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-03-02 08:36:47 +0000 |
commit | 052516c75f50ca51d73cb2f69a51e04a78a69a5c (patch) | |
tree | d0db4d9fa7e942178223ba428649bfdda4020b60 | |
parent | Removing uneeded embedding of MPL copy in copyright. (diff) | |
download | tqdm-052516c75f50ca51d73cb2f69a51e04a78a69a5c.tar.xz tqdm-052516c75f50ca51d73cb2f69a51e04a78a69a5c.zip |
Removing dont-use-setuptools-scm.patch, not needed anymore with new upstream version.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rw-r--r-- | debian/patches/dont-use-setuptools-scm.patch | 32 | ||||
-rw-r--r-- | debian/patches/series | 1 |
2 files changed, 0 insertions, 33 deletions
diff --git a/debian/patches/dont-use-setuptools-scm.patch b/debian/patches/dont-use-setuptools-scm.patch deleted file mode 100644 index 8b89ea8..0000000 --- a/debian/patches/dont-use-setuptools-scm.patch +++ /dev/null @@ -1,32 +0,0 @@ ---- a/setup.py -+++ b/setup.py -@@ -5,6 +5,12 @@ from os import path - - from setuptools import setup - -+ -+# https://packaging.python.org/guides/single-sourcing-package-version/ -+version = {} -+with open('tqdm/_dist_ver.py') as fp: -+ exec(fp.read(), version) -+ - src_dir = path.abspath(path.dirname(__file__)) - if sys.argv[1].lower().strip() == 'make': # exec Makefile commands - import pymake -@@ -13,4 +19,4 @@ if sys.argv[1].lower().strip() == 'make' - # Stop to avoid setup.py raising non-standard command error - sys.exit(0) - --setup(use_scm_version=True) -+setup(version=version['__version__']) ---- a/setup.cfg -+++ b/setup.cfg -@@ -74,7 +74,7 @@ classifiers = - Topic :: Utilities - - [options] --setup_requires = setuptools>=42; setuptools_scm[toml]>=3.4 -+setup_requires = setuptools>=42 - python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.* - install_requires = - colorama; platform_system == 'Windows' diff --git a/debian/patches/series b/debian/patches/series index ffc082f..8b831c6 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,3 +1,2 @@ -dont-use-setuptools-scm.patch pandas2p1_ignore_warnings.patch python3p12_compat.patch |