Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-hanzidentifier for 
openSUSE:Factory checked in at 2025-02-07 23:07:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-hanzidentifier (Old)
 and      /work/SRC/openSUSE:Factory/.python-hanzidentifier.new.2316 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-hanzidentifier"

Fri Feb  7 23:07:32 2025 rev:6 rq:1244146 version:1.3.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-hanzidentifier/python-hanzidentifier.changes  
    2023-12-08 22:32:15.488451813 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-hanzidentifier.new.2316/python-hanzidentifier.changes
    2025-02-07 23:11:53.074528478 +0100
@@ -1,0 +2,6 @@
+Fri Feb  7 12:03:29 UTC 2025 - John Paul Adrian Glaubitz 
<[email protected]>
+
+- Update to 1.3.0
+  * Remove EOL Pythons, only support Python 3.9+
+
+-------------------------------------------------------------------

Old:
----
  hanzidentifier-1.2.0.tar.gz

New:
----
  hanzidentifier-1.3.0.tar.gz

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

Other differences:
------------------
++++++ python-hanzidentifier.spec ++++++
--- /var/tmp/diff_new_pack.L2Yw4R/_old  2025-02-07 23:11:53.510546423 +0100
+++ /var/tmp/diff_new_pack.L2Yw4R/_new  2025-02-07 23:11:53.510546423 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-hanzidentifier
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2025 SUSE LLC
 #
 # 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-hanzidentifier
-Version:        1.2.0
+Version:        1.3.0
 Release:        0
 Summary:        Python module that identifies Chinese text as Simplified or 
Traditional
 License:        MIT

++++++ hanzidentifier-1.2.0.tar.gz -> hanzidentifier-1.3.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hanzidentifier-1.2.0/.github/workflows/ci.yml 
new/hanzidentifier-1.3.0/.github/workflows/ci.yml
--- old/hanzidentifier-1.2.0/.github/workflows/ci.yml   2023-06-30 
14:00:43.000000000 +0200
+++ new/hanzidentifier-1.3.0/.github/workflows/ci.yml   2024-11-20 
01:55:57.000000000 +0100
@@ -9,24 +9,24 @@
     strategy:
       fail-fast: false
       matrix:
-        python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
+        python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
         os: [ubuntu-latest, macos-latest]
         include:
-          - python-version: 3.7
-            py: py37
-          - python-version: 3.8
-            py: py38
           - python-version: 3.9
             py: py39
           - python-version: '3.10'
             py: py310
           - python-version: '3.11'
             py: py311
+          - python-version: '3.12'
+            py: py312
+          - python-version: '3.13'
+            py: py313
     runs-on: ${{ matrix.os }}
     steps:
-      - uses: actions/checkout@v3
+      - uses: actions/checkout@v4
       - name: Setup Python ${{ matrix.python-version }}
-        uses: actions/setup-python@v4
+        uses: actions/setup-python@v5
         with:
           python-version: ${{ matrix.python-version }}
       - name: Install dependencies
@@ -38,11 +38,11 @@
   lint:
     runs-on: ubuntu-latest
     steps:
-      - uses: actions/checkout@v3
+      - uses: actions/checkout@v4
       - name: Setup Python
-        uses: actions/setup-python@v4
+        uses: actions/setup-python@v5
         with:
-          python-version: '3.11'
+          python-version: '3.13'
       - name: Install Python dependencies
         run: |
           python -m pip install --upgrade hatch
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hanzidentifier-1.2.0/.github/workflows/publish.yml 
new/hanzidentifier-1.3.0/.github/workflows/publish.yml
--- old/hanzidentifier-1.2.0/.github/workflows/publish.yml      2023-06-30 
14:00:43.000000000 +0200
+++ new/hanzidentifier-1.3.0/.github/workflows/publish.yml      2024-11-20 
01:55:57.000000000 +0100
@@ -9,11 +9,11 @@
   pypi:
     runs-on: ubuntu-latest
     steps:
-      - uses: actions/checkout@v3
+      - uses: actions/checkout@v4
       - name: Setup Python
-        uses: actions/setup-python@v4
+        uses: actions/setup-python@v5
         with:
-          python-version: '3.11'
+          python-version: '3.13'
       - name: Install Hatch
         run: |
           python -m pip install -U hatch
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hanzidentifier-1.2.0/CHANGES.rst 
new/hanzidentifier-1.3.0/CHANGES.rst
--- old/hanzidentifier-1.2.0/CHANGES.rst        2023-06-30 14:00:43.000000000 
+0200
+++ new/hanzidentifier-1.3.0/CHANGES.rst        2024-11-20 01:55:57.000000000 
+0100
@@ -1,6 +1,11 @@
 Changes
 =======
 
+v1.3.0 (2024-11-19)
+-------------------
+
+* Remove EOL Pythons, only support Python 3.9+
+
 v1.2.0 (2023-06-30)
 -------------------
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hanzidentifier-1.2.0/pyproject.toml 
new/hanzidentifier-1.3.0/pyproject.toml
--- old/hanzidentifier-1.2.0/pyproject.toml     2023-06-30 14:00:43.000000000 
+0200
+++ new/hanzidentifier-1.3.0/pyproject.toml     2024-11-20 01:55:57.000000000 
+0100
@@ -9,9 +9,9 @@
 readme = "README.rst"
 license = "MIT"
 authors = [
-    { name = "Thomas Roten", email = "[email protected]" },
+    { name = "Thomas Roten" },
 ]
-requires-python = ">=3.7"
+requires-python = ">=3.9"
 keywords = [
     "chinese",
     "mandarin",
@@ -28,16 +28,16 @@
     "Development Status :: 5 - Production/Stable",
     "Programming Language :: Python",
     "Programming Language :: Python :: 3",
-    "Programming Language :: Python :: 3.7",
-    "Programming Language :: Python :: 3.8",
     "Programming Language :: Python :: 3.9",
     "Programming Language :: Python :: 3.10",
     "Programming Language :: Python :: 3.11",
+    "Programming Language :: Python :: 3.12",
+    "Programming Language :: Python :: 3.13",
     "Topic :: Software Development :: Libraries :: Python Modules",
     "Topic :: Text Processing :: Linguistic",
 ]
 dependencies = [
-    "zhon ~= 2.0",
+    "zhon ~= 2.1",
 ]
 
 [project.urls]
@@ -67,7 +67,7 @@
 ]
 
 [[tool.hatch.envs.test.matrix]]
-python = ["3.7", "3.8", "3.9", "3.10", "3.11"]
+python = ["3.9", "3.10", "3.11", "3.12", "3.13"]
 
 [tool.hatch.envs.style]
 detached = true
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hanzidentifier-1.2.0/src/hanzidentifier/__init__.py 
new/hanzidentifier-1.3.0/src/hanzidentifier/__init__.py
--- old/hanzidentifier-1.2.0/src/hanzidentifier/__init__.py     2023-06-30 
14:00:43.000000000 +0200
+++ new/hanzidentifier-1.3.0/src/hanzidentifier/__init__.py     2024-11-20 
01:55:57.000000000 +0100
@@ -15,4 +15,4 @@
     UNKNOWN,
 )
 
-__version__ = "1.2.0"
+__version__ = "1.3.0"

Reply via email to