File: 0001-Remove-strict-dependency-on-setuptools-scm.patch

package info (click to toggle)
pytest-django 2.9.1-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 424 kB
  • ctags: 188
  • sloc: python: 1,009; makefile: 148
file content (24 lines) | stat: -rw-r--r-- 812 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
From 61f25afa04942da0b3a7287f575c1fbbf1b5cf96 Mon Sep 17 00:00:00 2001
From: Brian May <bam@debian.org>
Date: Tue, 12 Apr 2016 09:41:47 +1000
Subject: Remove strict dependency on setuptools-scm

Author: Neil Williams <codehelp@debian.org>
Bug-Debian: https://bugs.debian.org/808536
---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 61c1842..4de44d2 100755
--- a/setup.py
+++ b/setup.py
@@ -28,7 +28,7 @@ setup(
     license='BSD-3-Clause',
     packages=['pytest_django'],
     long_description=read('README.rst'),
-    setup_requires=['setuptools_scm==1.8.0'],
+    setup_requires=['setuptools_scm>=1.8.0'],
     install_requires=['pytest>=2.5'],
     classifiers=['Development Status :: 5 - Production/Stable',
                  'Framework :: Django',