14
0
Files
python-testflo/use_setuptools.patch
Todd R 8675ae77be Accepting request 662893 from home:TheBlackCat:branches:devel:languages:python
- Update to testflo version 1.3.4
  * bug fix
- Update to testflo version 1.3.3
  * bug fix
- Update to testflo version 1.3.2
  * added support for ISOLATED attribute
- Update to testflo version 1.3.1
Aug 17, 2018
  * output from --pre_announce now looks better, with the result ('.', 'S', or 'F') showing on the same line as the
    "about to run ..." instead of on the following line
  * comments are now allowed inside of a test list file
  * added a --full_path option so that full testspec paths will be displayed. Having the full path make it easier to
    copy and paste the testspec to run testflo on just that single test.
  * updated the long_description in setup.py for pypi.

OBS-URL: https://build.opensuse.org/request/show/662893
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-testflo?expand=0&rev=10
2019-01-04 19:13:41 +00:00

21 lines
502 B
Diff

From 31d00f83262e66298f759b8e2b45718cd534622c Mon Sep 17 00:00:00 2001
From: Todd <toddrme2178@gmail.com>
Date: Fri, 4 Jan 2019 13:48:50 -0500
Subject: [PATCH] Use setuptools
`entry_points` requires setuptools. It doesn't work with distutils.
---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index 4a4f6fd..55cf9ba 100644
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,4 @@
-from distutils.core import setup
+from setuptools import setup
import re