Hello community,
here is the log from the commit of package python-django-sekizai for
openSUSE:Factory checked in at 2020-02-20 14:59:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-django-sekizai (Old)
and /work/SRC/openSUSE:Factory/.python-django-sekizai.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-django-sekizai"
Thu Feb 20 14:59:34 2020 rev:3 rq:777604 version:1.1.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-django-sekizai/python-django-sekizai.changes
2019-05-24 11:33:28.073364903 +0200
+++
/work/SRC/openSUSE:Factory/.python-django-sekizai.new.26092/python-django-sekizai.changes
2020-02-20 14:59:39.814792323 +0100
@@ -1,0 +2,12 @@
+Thu Feb 20 09:00:29 UTC 2020 - Tomáš Chvátal <[email protected]>
+
+- Update to 1.1.0:
+ * Added support for Django 3.0
+ * Added support for Python 3.8
+ * Extended test matrix
+ * Added isort and adapted imports
+ * Adapted code base to align with other supported addons
+ * Adapted README.rst instructions
+- Rebase patch django-sekizai-pycodestyle.patch
+
+-------------------------------------------------------------------
Old:
----
1.0.0.tar.gz
New:
----
1.1.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-django-sekizai.spec ++++++
--- /var/tmp/diff_new_pack.KE0jNv/_old 2020-02-20 14:59:40.434793539 +0100
+++ /var/tmp/diff_new_pack.KE0jNv/_new 2020-02-20 14:59:40.438793548 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-django-sekizai
#
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,11 +18,10 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-django-sekizai
-Version: 1.0.0
+Version: 1.1.0
Release: 0
Summary: Django Template Blocks with extra functionality
License: MIT
-Group: Development/Languages/Python
URL: https://github.com/ojii/django-sekizai
Source:
https://github.com/divio/django-sekizai/archive/%{version}.tar.gz
Patch0: django-sekizai-pycodestyle.patch
@@ -52,10 +51,10 @@
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
-%python_exec runtests.py
+%python_exec setup.py test
%files %{python_files}
-%license LICENSE
+%license LICENSE.txt
%doc README.rst
%{python_sitelib}/*
++++++ 1.0.0.tar.gz -> 1.1.0.tar.gz ++++++
++++ 2606 lines of diff (skipped)
++++++ django-sekizai-pycodestyle.patch ++++++
--- /var/tmp/diff_new_pack.KE0jNv/_old 2020-02-20 14:59:40.494793657 +0100
+++ /var/tmp/diff_new_pack.KE0jNv/_new 2020-02-20 14:59:40.494793657 +0100
@@ -1,16 +1,17 @@
-Index: django-sekizai-0.10.0/sekizai/tests.py
+Index: django-sekizai-1.1.0/tests/test_core.py
===================================================================
---- django-sekizai-0.10.0.orig/sekizai/tests.py
-+++ django-sekizai-0.10.0/sekizai/tests.py
-@@ -9,7 +9,6 @@ from django import template
- from django.conf import settings
- from django.template.loader import render_to_string
+--- django-sekizai-1.1.0.orig/tests/test_core.py
++++ django-sekizai-1.1.0/tests/test_core.py
+@@ -8,8 +8,6 @@ from django.conf import settings
from django.template.engine import Engine
--import pep8
+ from django.template.loader import render_to_string
+-import pep8
+-
from sekizai import context_processors
from sekizai.context import SekizaiContext
-@@ -212,17 +211,6 @@ class SekizaiTestCase(TestCase):
+ from sekizai.helpers import (
+@@ -212,17 +210,6 @@ class SekizaiTestCase(TestCase):
self.assertTrue(result.status, result.message)
return rendered