Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-deap for openSUSE:Factory checked in at 2022-03-01 17:03:48 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-deap (Old) and /work/SRC/openSUSE:Factory/.python-deap.new.1958 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-deap" Tue Mar 1 17:03:48 2022 rev:5 rq:958231 version:1.3.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-deap/python-deap.changes 2021-04-21 21:00:59.142351254 +0200 +++ /work/SRC/openSUSE:Factory/.python-deap.new.1958/python-deap.changes 2022-03-01 17:04:31.764348738 +0100 @@ -1,0 +2,5 @@ +Tue Mar 1 09:37:13 UTC 2022 - Dirk M??ller <dmuel...@suse.com> + +- add no2to3.patch for compatibility with newer setuptools + +------------------------------------------------------------------- New: ---- no2to3.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-deap.spec ++++++ --- /var/tmp/diff_new_pack.6VGJsk/_old 2022-03-01 17:04:32.264348871 +0100 +++ /var/tmp/diff_new_pack.6VGJsk/_new 2022-03-01 17:04:32.272348873 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-deap # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -29,6 +29,7 @@ Patch0: python-deap-remove-nose.patch # https://github.com/DEAP/deap/pull/507 Patch1: python-deap-python3.patch +Patch2: no2to3.patch BuildRequires: %{python_module numpy-devel} BuildRequires: %{python_module setuptools} BuildRequires: fdupes @@ -49,6 +50,7 @@ %setup -q -n deap-%{version} %patch0 -p1 %patch1 -p1 +%patch2 -p1 %build export CFLAGS="%{optflags}" ++++++ no2to3.patch ++++++ Index: deap-1.3.1/setup.py =================================================================== --- deap-1.3.1.orig/setup.py +++ deap-1.3.1/setup.py @@ -86,8 +86,7 @@ def run_setup(build_ext): ], ext_modules=extra_modules, cmdclass={"build_ext": ve_build_ext}, - install_requires=['numpy'], - use_2to3=True + install_requires=['numpy'] ) try: