- fix build, run tests
- added patches
fix https://github.com/thefactory/marathon-python/issues/284
+ python-marathon-no-2to3.patch
fix 1850734b5b.diff
+ python-marathon-use-collections.abc.patch
OBS-URL: https://build.opensuse.org/request/show/958036
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-marathon?expand=0&rev=14
22 lines
587 B
Diff
22 lines
587 B
Diff
Index: marathon-0.13.0/setup.py
|
|
===================================================================
|
|
--- marathon-0.13.0.orig/setup.py 2020-08-21 18:22:30.000000000 +0200
|
|
+++ marathon-0.13.0/setup.py 2022-02-28 12:20:53.654551958 +0100
|
|
@@ -2,10 +2,6 @@
|
|
import sys
|
|
from setuptools import setup
|
|
|
|
-extra = {}
|
|
-if sys.version_info >= (3,):
|
|
- extra['use_2to3'] = True
|
|
-
|
|
setup(
|
|
name='marathon',
|
|
version='0.13.0',
|
|
@@ -30,5 +26,4 @@ setup(
|
|
'Programming Language :: Python',
|
|
'Topic :: Software Development :: Libraries :: Python Modules'
|
|
],
|
|
- **extra
|
|
)
|