File: unversion-setuptools-scm

package info (click to toggle)
python-logfury 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 168 kB
  • sloc: python: 637; sh: 7; makefile: 5
file content (24 lines) | stat: -rw-r--r-- 730 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
From: Stefano Rivera <stefanor@debian.org>
Date: Fri, 25 Mar 2022 10:19:25 -0400
Subject: Unversion setuptools-scm dependency

We have a newer version in the archive, and don't care about
compatibility with ancient Pythons.

Forwarded: not-needed
---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index b244da4..1c2c9e6 100644
--- a/setup.py
+++ b/setup.py
@@ -72,6 +72,6 @@ setup(
     classifiers      = CLASSIFIERS,
     package_data     = {NAME: ['requirements.txt', 'LICENSE']},
 
-    setup_requires   = ['setuptools_scm<6.0'],  # setuptools_scm>=6.0 doesn't support Python 3.5
+    setup_requires   = ['setuptools_scm'],
     use_scm_version  = True,
 )  # yapf: disable