Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-DataProperty for 
openSUSE:Factory checked in at 2026-05-10 16:48:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-DataProperty (Old)
 and      /work/SRC/openSUSE:Factory/.python-DataProperty.new.1966 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-DataProperty"

Sun May 10 16:48:16 2026 rev:14 rq:1352251 version:1.1.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-DataProperty/python-DataProperty.changes  
2025-06-05 20:37:16.684625165 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-DataProperty.new.1966/python-DataProperty.changes
        2026-05-10 16:48:54.342206856 +0200
@@ -1,0 +2,9 @@
+Sun May 10 09:10:32 UTC 2026 - Dirk Müller <[email protected]>
+
+- update to 1.1.1:
+  * Bump the actions-dependencies group across 1 directory with 6
+    updates
+  * Add support for Python 3.14
+  * Update `typepy` version constraint to <3
+
+-------------------------------------------------------------------

Old:
----
  dataproperty-1.1.0.tar.gz

New:
----
  dataproperty-1.1.1.tar.gz

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

Other differences:
------------------
++++++ python-DataProperty.spec ++++++
--- /var/tmp/diff_new_pack.Ps8juJ/_old  2026-05-10 16:48:54.910230102 +0200
+++ /var/tmp/diff_new_pack.Ps8juJ/_new  2026-05-10 16:48:54.914230266 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-DataProperty
 #
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2026 SUSE LLC and contributors
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %{?sle15_python_module_pythons}
 Name:           python-DataProperty
-Version:        1.1.0
+Version:        1.1.1
 Release:        0
 Summary:        Python library for extract property from data
 License:        MIT

++++++ dataproperty-1.1.0.tar.gz -> dataproperty-1.1.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dataproperty-1.1.0/.github/workflows/ci.yml 
new/dataproperty-1.1.1/.github/workflows/ci.yml
--- old/dataproperty-1.1.0/.github/workflows/ci.yml     2024-12-31 
15:36:23.000000000 +0100
+++ new/dataproperty-1.1.1/.github/workflows/ci.yml     2026-05-09 
12:32:44.000000000 +0200
@@ -29,14 +29,14 @@
     timeout-minutes: 20
 
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v6
         with:
           fetch-depth: 0
           fetch-tags: true
 
-      - uses: actions/setup-python@v5
+      - uses: actions/setup-python@v6
         with:
-          python-version: "3.13"
+          python-version: "3.14"
           cache: pip
           cache-dependency-path: |
             setup.py
@@ -47,7 +47,7 @@
 
       - run: make build
 
-      - uses: actions/upload-artifact@v4
+      - uses: actions/upload-artifact@v7
         with:
           name: dist
           path: ./dist/*
@@ -60,14 +60,14 @@
     timeout-minutes: 20
 
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v6
         with:
           fetch-depth: 0
           fetch-tags: true
 
-      - uses: actions/setup-python@v5
+      - uses: actions/setup-python@v6
         with:
-          python-version: "3.13"
+          python-version: "3.14"
           cache: pip
           cache-dependency-path: |
             setup.py
@@ -83,17 +83,17 @@
     strategy:
       fail-fast: false
       matrix:
-        python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.10"]
+        python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14", 
"pypy-3.10"]
         os: [ubuntu-latest, macos-latest, windows-latest]
     concurrency:
       group: ${{ github.event_name }}-${{ github.workflow }}-${{ 
github.ref_name }}-ut-${{ matrix.os }}-${{ matrix.python-version }}
       cancel-in-progress: true
     timeout-minutes: 20
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v6
 
       - name: Setup Python ${{ matrix.python-version }}
-        uses: actions/setup-python@v5
+        uses: actions/setup-python@v6
         with:
           python-version: ${{ matrix.python-version }}
           cache: pip
@@ -114,11 +114,11 @@
     timeout-minutes: 20
 
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v6
 
-      - uses: actions/setup-python@v5
+      - uses: actions/setup-python@v6
         with:
-          python-version: "3.13"
+          python-version: "3.14"
           cache: pip
           cache-dependency-path: |
             setup.py
@@ -127,7 +127,8 @@
 
       - run: make setup-ci
 
-      - run: tox -e cov
+      - run:
+          tox -e cov
           # tox -e cov -- --discord-verbose=0  # reduce verbosity level of 
summary that send to discord
 
       - name: Upload coverage report
@@ -144,11 +145,11 @@
       cancel-in-progress: true
     timeout-minutes: 20
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v6
 
-      - uses: actions/setup-python@v5
+      - uses: actions/setup-python@v6
         with:
-          python-version: "3.13"
+          python-version: "3.14"
           cache: pip
           cache-dependency-path: |
             setup.py
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dataproperty-1.1.0/.github/workflows/on_push_default_branch.yml 
new/dataproperty-1.1.1/.github/workflows/on_push_default_branch.yml
--- old/dataproperty-1.1.0/.github/workflows/on_push_default_branch.yml 
2024-12-31 15:36:23.000000000 +0100
+++ new/dataproperty-1.1.1/.github/workflows/on_push_default_branch.yml 
2026-05-09 12:32:44.000000000 +0200
@@ -20,14 +20,14 @@
     timeout-minutes: 20
 
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v6
         with:
           fetch-depth: 0
           fetch-tags: true
 
-      - uses: actions/setup-python@v5
+      - uses: actions/setup-python@v6
         with:
-          python-version: "3.13"
+          python-version: "3.14"
           cache: pip
           cache-dependency-path: |
             setup.py
@@ -38,7 +38,7 @@
 
       - run: make build
 
-      - uses: actions/upload-artifact@v4
+      - uses: actions/upload-artifact@v7
         with:
           name: dist
           path: ./dist/*
@@ -57,7 +57,7 @@
       id-token: write  # IMPORTANT: this permission is mandatory for trusted 
publishing
 
     steps:
-      - uses: actions/download-artifact@v4
+      - uses: actions/download-artifact@v8
         with:
           name: dist
           path: ./dist
@@ -79,19 +79,19 @@
       id-token: write
 
     steps:
-      - uses: actions/download-artifact@v4
+      - uses: actions/download-artifact@v8
         with:
           name: dist
           path: ./dist
 
       - name: Sign the dists with Sigstore
-        uses: sigstore/[email protected]
+        uses: sigstore/[email protected]
         with:
           inputs: >-
             ./dist/*.tar.gz
             ./dist/*.whl
 
-      - uses: actions/upload-artifact@v4
+      - uses: actions/upload-artifact@v7
         with:
           name: sigstore
           path: ./dist/*
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dataproperty-1.1.0/.github/workflows/publish.yml 
new/dataproperty-1.1.1/.github/workflows/publish.yml
--- old/dataproperty-1.1.0/.github/workflows/publish.yml        2024-12-31 
15:36:23.000000000 +0100
+++ new/dataproperty-1.1.1/.github/workflows/publish.yml        2026-05-09 
12:32:44.000000000 +0200
@@ -14,14 +14,14 @@
     timeout-minutes: 20
 
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v6
         with:
           fetch-depth: 0
           fetch-tags: true
 
-      - uses: actions/setup-python@v5
+      - uses: actions/setup-python@v6
         with:
-          python-version: "3.13"
+          python-version: "3.14"
           cache: pip
           cache-dependency-path: |
             setup.py
@@ -32,7 +32,7 @@
 
       - run: make build
 
-      - uses: actions/upload-artifact@v4
+      - uses: actions/upload-artifact@v7
         with:
           name: dist
           path: ./dist/*
@@ -48,7 +48,7 @@
       id-token: write  # IMPORTANT: this permission is mandatory for trusted 
publishing
 
     steps:
-      - uses: actions/download-artifact@v4
+      - uses: actions/download-artifact@v8
         with:
           name: dist
           path: ./dist
@@ -65,20 +65,20 @@
       contents: write
 
     steps:
-      - uses: actions/download-artifact@v4
+      - uses: actions/download-artifact@v8
         with:
           name: dist
           path: ./dist
 
       - name: Sign the dists with Sigstore
-        uses: sigstore/[email protected]
+        uses: sigstore/[email protected]
         with:
           inputs: >-
             ./dist/*.tar.gz
             ./dist/*.whl
 
       - name: Generate a GitHub release
-        uses: softprops/action-gh-release@v2
+        uses: softprops/action-gh-release@v3
         with:
           generate_release_notes: true
           files: dist/*
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dataproperty-1.1.0/DataProperty.egg-info/PKG-INFO 
new/dataproperty-1.1.1/DataProperty.egg-info/PKG-INFO
--- old/dataproperty-1.1.0/DataProperty.egg-info/PKG-INFO       2024-12-31 
15:36:57.000000000 +0100
+++ new/dataproperty-1.1.1/DataProperty.egg-info/PKG-INFO       2026-05-09 
12:33:12.000000000 +0200
@@ -1,6 +1,6 @@
-Metadata-Version: 2.1
+Metadata-Version: 2.4
 Name: DataProperty
-Version: 1.1.0
+Version: 1.1.1
 Summary: Python library for extract property from data.
 Home-page: https://github.com/thombashi/DataProperty
 Author: Tsuyoshi Hombashi
@@ -23,6 +23,7 @@
 Classifier: Programming Language :: Python :: 3.11
 Classifier: Programming Language :: Python :: 3.12
 Classifier: Programming Language :: Python :: 3.13
+Classifier: Programming Language :: Python :: 3.14
 Classifier: Programming Language :: Python :: Implementation :: CPython
 Classifier: Programming Language :: Python :: Implementation :: PyPy
 Classifier: Topic :: Software Development :: Libraries
@@ -32,13 +33,29 @@
 Description-Content-Type: text/x-rst
 License-File: LICENSE
 Requires-Dist: mbstrdecoder<2,>=1.0.0
-Requires-Dist: typepy[datetime]<2,>=1.3.2
+Requires-Dist: typepy[datetime]<3,>=1.3.2
 Provides-Extra: logging
 Requires-Dist: loguru<1,>=0.4.1; extra == "logging"
 Provides-Extra: test
 Requires-Dist: pytest>=6.0.1; extra == "test"
 Requires-Dist: pytest-md-report>=0.6.2; extra == "test"
 Requires-Dist: tcolorpy>=0.1.2; extra == "test"
+Dynamic: author
+Dynamic: author-email
+Dynamic: classifier
+Dynamic: description
+Dynamic: description-content-type
+Dynamic: home-page
+Dynamic: keywords
+Dynamic: license
+Dynamic: license-file
+Dynamic: maintainer
+Dynamic: maintainer-email
+Dynamic: project-url
+Dynamic: provides-extra
+Dynamic: requires-dist
+Dynamic: requires-python
+Dynamic: summary
 
 .. contents:: **DataProperty**
    :backlinks: top
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dataproperty-1.1.0/DataProperty.egg-info/requires.txt 
new/dataproperty-1.1.1/DataProperty.egg-info/requires.txt
--- old/dataproperty-1.1.0/DataProperty.egg-info/requires.txt   2024-12-31 
15:36:57.000000000 +0100
+++ new/dataproperty-1.1.1/DataProperty.egg-info/requires.txt   2026-05-09 
12:33:12.000000000 +0200
@@ -1,5 +1,5 @@
 mbstrdecoder<2,>=1.0.0
-typepy[datetime]<2,>=1.3.2
+typepy[datetime]<3,>=1.3.2
 
 [logging]
 loguru<1,>=0.4.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dataproperty-1.1.0/LICENSE 
new/dataproperty-1.1.1/LICENSE
--- old/dataproperty-1.1.0/LICENSE      2024-12-31 15:36:23.000000000 +0100
+++ new/dataproperty-1.1.1/LICENSE      2026-05-09 12:32:44.000000000 +0200
@@ -1,6 +1,6 @@
 The MIT License (MIT)
 
-Copyright (c) 2016-2024 Tsuyoshi Hombashi
+Copyright (c) 2016-2026 Tsuyoshi Hombashi
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dataproperty-1.1.0/PKG-INFO 
new/dataproperty-1.1.1/PKG-INFO
--- old/dataproperty-1.1.0/PKG-INFO     2024-12-31 15:36:57.441477000 +0100
+++ new/dataproperty-1.1.1/PKG-INFO     2026-05-09 12:33:12.378501000 +0200
@@ -1,6 +1,6 @@
-Metadata-Version: 2.1
+Metadata-Version: 2.4
 Name: DataProperty
-Version: 1.1.0
+Version: 1.1.1
 Summary: Python library for extract property from data.
 Home-page: https://github.com/thombashi/DataProperty
 Author: Tsuyoshi Hombashi
@@ -23,6 +23,7 @@
 Classifier: Programming Language :: Python :: 3.11
 Classifier: Programming Language :: Python :: 3.12
 Classifier: Programming Language :: Python :: 3.13
+Classifier: Programming Language :: Python :: 3.14
 Classifier: Programming Language :: Python :: Implementation :: CPython
 Classifier: Programming Language :: Python :: Implementation :: PyPy
 Classifier: Topic :: Software Development :: Libraries
@@ -32,13 +33,29 @@
 Description-Content-Type: text/x-rst
 License-File: LICENSE
 Requires-Dist: mbstrdecoder<2,>=1.0.0
-Requires-Dist: typepy[datetime]<2,>=1.3.2
+Requires-Dist: typepy[datetime]<3,>=1.3.2
 Provides-Extra: logging
 Requires-Dist: loguru<1,>=0.4.1; extra == "logging"
 Provides-Extra: test
 Requires-Dist: pytest>=6.0.1; extra == "test"
 Requires-Dist: pytest-md-report>=0.6.2; extra == "test"
 Requires-Dist: tcolorpy>=0.1.2; extra == "test"
+Dynamic: author
+Dynamic: author-email
+Dynamic: classifier
+Dynamic: description
+Dynamic: description-content-type
+Dynamic: home-page
+Dynamic: keywords
+Dynamic: license
+Dynamic: license-file
+Dynamic: maintainer
+Dynamic: maintainer-email
+Dynamic: project-url
+Dynamic: provides-extra
+Dynamic: requires-dist
+Dynamic: requires-python
+Dynamic: summary
 
 .. contents:: **DataProperty**
    :backlinks: top
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dataproperty-1.1.0/dataproperty/__version__.py 
new/dataproperty-1.1.1/dataproperty/__version__.py
--- old/dataproperty-1.1.0/dataproperty/__version__.py  2024-12-31 
15:36:23.000000000 +0100
+++ new/dataproperty-1.1.1/dataproperty/__version__.py  2026-05-09 
12:32:44.000000000 +0200
@@ -2,8 +2,8 @@
 
 
 __author__: Final = "Tsuyoshi Hombashi"
-__copyright__: Final = f"Copyright 2016-2024, {__author__}"
+__copyright__: Final = f"Copyright 2016-2026, {__author__}"
 __license__: Final = "MIT License"
-__version__ = "1.1.0"
+__version__ = "1.1.1"
 __maintainer__: Final = __author__
 __email__: Final = "[email protected]"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dataproperty-1.1.0/pyproject.toml 
new/dataproperty-1.1.1/pyproject.toml
--- old/dataproperty-1.1.0/pyproject.toml       2024-12-31 15:36:23.000000000 
+0100
+++ new/dataproperty-1.1.1/pyproject.toml       2026-05-09 12:32:44.000000000 
+0200
@@ -26,7 +26,7 @@
 | docs/conf.py
 '''
 line-length = 100
-target-version = ['py39', 'py310', 'py311']
+target-version = ['py39', 'py310', 'py311', 'py312', 'py313', 'py314']
 
 [tool.isort]
 include_trailing_comma = true
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dataproperty-1.1.0/requirements/docs_requirements.txt 
new/dataproperty-1.1.1/requirements/docs_requirements.txt
--- old/dataproperty-1.1.0/requirements/docs_requirements.txt   2024-12-31 
15:36:23.000000000 +0100
+++ new/dataproperty-1.1.1/requirements/docs_requirements.txt   2026-05-09 
12:32:44.000000000 +0200
@@ -1,2 +1,2 @@
-sphinx_rtd_theme
-Sphinx
+sphinx_rtd_theme>=1.2.2
+Sphinx>=2.4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dataproperty-1.1.0/requirements/requirements.txt 
new/dataproperty-1.1.1/requirements/requirements.txt
--- old/dataproperty-1.1.0/requirements/requirements.txt        2024-12-31 
15:36:23.000000000 +0100
+++ new/dataproperty-1.1.1/requirements/requirements.txt        2026-05-09 
12:32:44.000000000 +0200
@@ -1,2 +1,2 @@
 mbstrdecoder>=1.0.0,<2
-typepy[datetime]>=1.3.2,<2
+typepy[datetime]>=1.3.2,<3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dataproperty-1.1.0/setup.py 
new/dataproperty-1.1.1/setup.py
--- old/dataproperty-1.1.0/setup.py     2024-12-31 15:36:23.000000000 +0100
+++ new/dataproperty-1.1.1/setup.py     2026-05-09 12:32:44.000000000 +0200
@@ -82,6 +82,7 @@
         "Programming Language :: Python :: 3.11",
         "Programming Language :: Python :: 3.12",
         "Programming Language :: Python :: 3.13",
+        "Programming Language :: Python :: 3.14",
         "Programming Language :: Python :: Implementation :: CPython",
         "Programming Language :: Python :: Implementation :: PyPy",
         "Topic :: Software Development :: Libraries",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dataproperty-1.1.0/test/test_column_dataproperty.py 
new/dataproperty-1.1.1/test/test_column_dataproperty.py
--- old/dataproperty-1.1.0/test/test_column_dataproperty.py     2024-12-31 
15:36:23.000000000 +0100
+++ new/dataproperty-1.1.1/test/test_column_dataproperty.py     2026-05-09 
12:32:44.000000000 +0200
@@ -142,8 +142,7 @@
         assert col_dp.minmax_additional_format_len.max_value == 0
 
         assert str(col_dp) == (
-            "column=0, type=REAL_NUMBER, align=right, ascii_width=8, "
-            "int_digits=1, decimal_places=0"
+            "column=0, type=REAL_NUMBER, align=right, ascii_width=8, 
int_digits=1, decimal_places=0"
         )
 
     def test_normal_number_2(self):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dataproperty-1.1.0/test/test_dataproperty.py 
new/dataproperty-1.1.1/test/test_dataproperty.py
--- old/dataproperty-1.1.0/test/test_dataproperty.py    2024-12-31 
15:36:23.000000000 +0100
+++ new/dataproperty-1.1.1/test/test_dataproperty.py    2026-05-09 
12:32:44.000000000 +0200
@@ -671,8 +671,7 @@
             [
                 DATATIME_DATA,
                 DefaultValue.STRICT_LEVEL_MAP,
-                "data=2017-01-02 03:04:05, type=DATETIME, align=left, "
-                "ascii_width=19, extra_len=0",
+                "data=2017-01-02 03:04:05, type=DATETIME, align=left, 
ascii_width=19, extra_len=0",
             ],
             [
                 "2017-01-02 03:04:05",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dataproperty-1.1.0/tox.ini 
new/dataproperty-1.1.1/tox.ini
--- old/dataproperty-1.1.0/tox.ini      2024-12-31 15:36:23.000000000 +0100
+++ new/dataproperty-1.1.1/tox.ini      2026-05-09 12:32:44.000000000 +0200
@@ -1,6 +1,6 @@
 [tox]
 envlist =
-    py{39,310,311,312,313}
+    py{39,310,311,312,313,314}
     pypy3
     build
     cov

Reply via email to