Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-django-tables2 for 
openSUSE:Factory checked in at 2023-07-03 17:42:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-django-tables2 (Old)
 and      /work/SRC/openSUSE:Factory/.python-django-tables2.new.13546 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-django-tables2"

Mon Jul  3 17:42:17 2023 rev:8 rq:1096322 version:2.6.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-django-tables2/python-django-tables2.changes  
    2023-04-16 16:07:45.821055050 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-django-tables2.new.13546/python-django-tables2.changes
   2023-07-03 17:42:19.696557095 +0200
@@ -1,0 +2,8 @@
+Sat Jul  1 20:42:36 UTC 2023 - Dirk Müller <dmuel...@suse.com>
+
+- update to 2.6.0:
+  * Fix bootstrap5-responsive template to extend bootstrap5
+  * Add support for django 4.2
+  * Drop python 3.7 and django 4.0 support (#920)
+
+-------------------------------------------------------------------

Old:
----
  django-tables2-2.5.3.tar.gz

New:
----
  django-tables2-2.6.0.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-django-tables2.spec ++++++
--- /var/tmp/diff_new_pack.TCvH2Z/_old  2023-07-03 17:42:20.508561876 +0200
+++ /var/tmp/diff_new_pack.TCvH2Z/_new  2023-07-03 17:42:20.512561899 +0200
@@ -19,7 +19,7 @@
 %define skip_python2 1
 %define skip_python36 1
 Name:           python-django-tables2
-Version:        2.5.3
+Version:        2.6.0
 Release:        0
 Summary:        Table/data-grid framework for Django
 License:        BSD-2-Clause

++++++ django-tables2-2.5.3.tar.gz -> django-tables2-2.6.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-tables2-2.5.3/.github/workflows/ci.yml 
new/django-tables2-2.6.0/.github/workflows/ci.yml
--- old/django-tables2-2.5.3/.github/workflows/ci.yml   2023-03-06 
07:18:04.000000000 +0100
+++ new/django-tables2-2.6.0/.github/workflows/ci.yml   2023-06-27 
11:40:34.000000000 +0200
@@ -4,7 +4,7 @@
   black:
     runs-on: ubuntu-latest
     steps:
-      - uses: actions/setup-python@v4.5.0
+      - uses: actions/setup-python@v4.6.1
       - uses: actions/checkout@v3
       - run: python -m pip install --upgrade black
       - run: black --check .
@@ -12,7 +12,7 @@
   flake8:
     runs-on: ubuntu-latest
     steps:
-      - uses: actions/setup-python@v4.5.0
+      - uses: actions/setup-python@v4.6.1
       - uses: actions/checkout@v3
       - run: python -m pip install flake8
       - run: flake8
@@ -20,9 +20,7 @@
   isort:
     runs-on: ubuntu-latest
     steps:
-      - uses: actions/setup-python@v4.5.0
-        with:
-            python-version: 3.8
+      - uses: actions/setup-python@v4.6.1
       - uses: actions/checkout@v3
       - run: python -m pip install -r requirements/common.pip isort==5.6.4
       - run: isort --diff --check django_tables2 test
@@ -31,13 +29,9 @@
     runs-on: ubuntu-latest
     strategy:
       matrix:
-        python-version: [3.7, 3.8, 3.9, "3.10", 3.11]
-        django-version: [3.2, 4.0, 4.1]
+        python-version: [3.8, 3.9, "3.10", 3.11]
+        django-version: [3.2, 4.1, 4.2]
         exclude:
-            - python-version: 3.7
-              django-version: 4.0
-            - python-version: 3.7
-              django-version: 4.1
             - python-version: "3.10"
               django-version: 3.2
             - python-version: 3.11
@@ -45,11 +39,11 @@
 
     steps:
       - name: Set up Python ${{ matrix.python-version }}
-        uses: actions/setup-python@v4.5.0
+        uses: actions/setup-python@v4.6.1
         with:
           python-version: ${{ matrix.python-version }}
       - uses: actions/checkout@v3
-      - uses: actions/cache@v3.2.6
+      - uses: actions/cache@v3.3.1
         with:
           path: ~/.cache/pip
           key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
@@ -64,13 +58,13 @@
           python -m pip install -r requirements/common.pip
       - run: coverage run --source=django_tables2 manage.py test
 
-  build_docs:
+  docs:
     runs-on: ubuntu-latest
     steps:
       - uses: actions/checkout@v3
-      - uses: actions/setup-python@v4.5.0
+      - uses: actions/setup-python@v4.6.1
         with:
-            python-version: 3.9
+            python-version: "3.11"
             cache: 'pip'
             cache-dependency-path: |
               docs/requirements.txt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-tables2-2.5.3/.pre-commit-config.yaml 
new/django-tables2-2.6.0/.pre-commit-config.yaml
--- old/django-tables2-2.5.3/.pre-commit-config.yaml    2023-03-06 
07:18:04.000000000 +0100
+++ new/django-tables2-2.6.0/.pre-commit-config.yaml    2023-06-27 
11:40:34.000000000 +0200
@@ -1,6 +1,6 @@
 repos:
--   repo: https://github.com/ambv/black
-    rev: 21.9b0
+-   repo: https://github.com/psf/black
+    rev: 23.1.0
     hooks:
     - id: black
-      language_version: python3.7
+      language_version: python3.11
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-tables2-2.5.3/.readthedocs.yml 
new/django-tables2-2.6.0/.readthedocs.yml
--- old/django-tables2-2.5.3/.readthedocs.yml   1970-01-01 01:00:00.000000000 
+0100
+++ new/django-tables2-2.6.0/.readthedocs.yml   2023-06-27 11:40:34.000000000 
+0200
@@ -0,0 +1,21 @@
+# .readthedocs.yaml
+# Read the Docs configuration file
+# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
+
+# Required
+version: 2
+
+# Set the version of Python and other tools you might need
+build:
+  os: ubuntu-22.04
+  tools:
+    python: "3.11"
+
+# Build documentation in the docs/ directory with Sphinx
+sphinx:
+   configuration: docs/conf.py
+
+# Optionally declare the Python requirements required to build your docs
+python:
+   install:
+   - requirements: docs/requirements.txt
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-tables2-2.5.3/CHANGELOG.md 
new/django-tables2-2.6.0/CHANGELOG.md
--- old/django-tables2-2.5.3/CHANGELOG.md       2023-03-06 07:18:04.000000000 
+0100
+++ new/django-tables2-2.6.0/CHANGELOG.md       2023-06-27 11:40:34.000000000 
+0200
@@ -1,5 +1,10 @@
 # Change log
 
+## 2.6.0 (2023-06-27)
+- Fix bootstrap5-responsive template to extend bootstrap5 
([#909](https://github.com/jieter/django-tables2/pull/909)) by 
[@mschoettle](https://github.com/mschoettle)
+- Add support for django 4.2
+- Drop python 3.7 and django 4.0 support 
([#920](https://github.com/jieter/django-tables2/pull/920))
+
 ## 2.5.3 (2023-03-05)
  - Assign request to table before anything else in `RequestConfig.configure()` 
([#888](https://github.com/jieter/django-tables2/pull/888)) fixes: 
[#865](https://github.com/jieter/django-tables2/issues/865)
  - Add type hints to get_context_data 
([#895](https://github.com/jieter/django-tables2/pull/895)) by 
[@mschoettle](https://github.com/mschoettle)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-tables2-2.5.3/django_tables2/__init__.py 
new/django-tables2-2.6.0/django_tables2/__init__.py
--- old/django-tables2-2.5.3/django_tables2/__init__.py 2023-03-06 
07:18:04.000000000 +0100
+++ new/django-tables2-2.6.0/django_tables2/__init__.py 2023-06-27 
11:40:34.000000000 +0200
@@ -20,7 +20,7 @@
 from .utils import A
 from .views import MultiTableMixin, SingleTableMixin, SingleTableView
 
-__version__ = "2.5.3"
+__version__ = "2.6.0"
 
 __all__ = (
     "Table",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/django-tables2-2.5.3/django_tables2/templates/django_tables2/bootstrap5-responsive.html
 
new/django-tables2-2.6.0/django_tables2/templates/django_tables2/bootstrap5-responsive.html
--- 
old/django-tables2-2.5.3/django_tables2/templates/django_tables2/bootstrap5-responsive.html
 2023-03-06 07:18:04.000000000 +0100
+++ 
new/django-tables2-2.6.0/django_tables2/templates/django_tables2/bootstrap5-responsive.html
 2023-06-27 11:40:34.000000000 +0200
@@ -1,4 +1,4 @@
-{% extends 'django_tables2/bootstrap4.html' %}
+{% extends 'django_tables2/bootstrap5.html' %}
 
 {% block table-wrapper %}
 <div class="table-container table-responsive">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-tables2-2.5.3/setup.py 
new/django-tables2-2.6.0/setup.py
--- old/django-tables2-2.5.3/setup.py   2023-03-06 07:18:04.000000000 +0100
+++ new/django-tables2-2.6.0/setup.py   2023-06-27 11:40:34.000000000 +0200
@@ -25,16 +25,15 @@
         "Development Status :: 5 - Production/Stable",
         "Environment :: Web Environment",
         "Framework :: Django",
-        "Framework :: Django :: 3.2",
-        "Framework :: Django :: 4.0",
+        "Framework :: Django :: 3.2",  # Until April 2024
         "Framework :: Django :: 4.1",
+        "Framework :: Django :: 4.2",
         "Intended Audience :: Developers",
         "License :: OSI Approved :: BSD License",
         "Operating System :: OS Independent",
         "Programming Language :: Python",
         "Programming Language :: Python :: 3",
         "Programming Language :: Python :: 3 :: Only",
-        "Programming Language :: Python :: 3.7",
         "Programming Language :: Python :: 3.8",
         "Programming Language :: Python :: 3.9",
         "Programming Language :: Python :: 3.10",

Reply via email to