Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-testfixtures for
openSUSE:Factory checked in at 2021-04-29 22:44:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-testfixtures (Old)
and /work/SRC/openSUSE:Factory/.python-testfixtures.new.1947 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-testfixtures"
Thu Apr 29 22:44:43 2021 rev:17 rq:888956 version:6.17.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-testfixtures/python-testfixtures.changes
2020-12-23 14:19:02.053585341 +0100
+++
/work/SRC/openSUSE:Factory/.python-testfixtures.new.1947/python-testfixtures.changes
2021-04-29 22:44:56.704153700 +0200
@@ -1,0 +2,6 @@
+Wed Apr 28 07:49:55 UTC 2021 - Steve Kowalik <[email protected]>
+
+- Add appease-django-320.patch:
+ * Upstream patch to avoid a test failure with building with Django 3.2
+
+-------------------------------------------------------------------
New:
----
appease-django-320.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-testfixtures.spec ++++++
--- /var/tmp/diff_new_pack.Hk4VHA/_old 2021-04-29 22:44:57.156151688 +0200
+++ /var/tmp/diff_new_pack.Hk4VHA/_new 2021-04-29 22:44:57.160151669 +0200
@@ -1,7 +1,7 @@
#
# spec file for package python-testfixtures
#
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -25,6 +25,8 @@
License: MIT
URL: https://github.com/Simplistix/testfixtures
Source:
https://files.pythonhosted.org/packages/source/t/testfixtures/testfixtures-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM:
gh#Simplistix/testfixtures/commit/52a14d92a122665b1a101e6398eca3982de01739
+Patch0: appease-django-320.patch
BuildRequires: %{python_module Django}
BuildRequires: %{python_module Twisted}
BuildRequires: %{python_module pytest >= 3.6}
@@ -57,6 +59,7 @@
%prep
%setup -q -n testfixtures-%{version}
+%autopatch -p1
chmod a-x docs/*.txt
%build
++++++ appease-django-320.patch ++++++
>From 52a14d92a122665b1a101e6398eca3982de01739 Mon Sep 17 00:00:00 2001
From: Chris Withers <[email protected]>
Date: Sat, 10 Apr 2021 19:42:20 +0100
Subject: [PATCH] appease Django 3.2
---
testfixtures/tests/test_django/settings.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/testfixtures/tests/test_django/settings.py
b/testfixtures/tests/test_django/settings.py
index cf960d7..5173650 100644
--- a/testfixtures/tests/test_django/settings.py
+++ b/testfixtures/tests/test_django/settings.py
@@ -6,3 +6,5 @@
]
DATABASES = {'default': {'ENGINE': 'django.db.backends.sqlite3'}}
+
+DEFAULT_AUTO_FIELD='django.db.models.AutoField'