Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-hatch-tryton for
openSUSE:Factory checked in at 2026-04-25 21:38:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-hatch-tryton (Old)
and /work/SRC/openSUSE:Factory/.python-hatch-tryton.new.11940 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-hatch-tryton"
Sat Apr 25 21:38:08 2026 rev:2 rq:1349223 version:0.1.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-hatch-tryton/python-hatch-tryton.changes
2026-03-27 16:53:54.754512479 +0100
+++
/work/SRC/openSUSE:Factory/.python-hatch-tryton.new.11940/python-hatch-tryton.changes
2026-04-25 21:43:04.863779871 +0200
@@ -1,0 +2,6 @@
+Sat Apr 25 11:09:48 UTC 2026 - Dirk Müller <[email protected]>
+
+- update to 0.1.1:
+ * Bug fixes
+
+-------------------------------------------------------------------
Old:
----
hatch_tryton-0.1.0.tar.gz
New:
----
hatch_tryton-0.1.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-hatch-tryton.spec ++++++
--- /var/tmp/diff_new_pack.SWZ4yn/_old 2026-04-25 21:43:05.631811206 +0200
+++ /var/tmp/diff_new_pack.SWZ4yn/_new 2026-04-25 21:43:05.635811369 +0200
@@ -1,7 +1,7 @@
#
# spec file for package python-hatch-tryton
#
-# Copyright (c) 2026 Dr. Axel Braun <[email protected]>
+# 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
@@ -14,18 +14,28 @@
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
+# Copyright (c) 2026 Dr. Axel Braun <[email protected]>
+#
+# All modifications and additions to the file contributed by third parties
+# remain the property of their copyright owners, unless otherwise agreed
+# upon. The license for this file, and modifications and additions to the
+# file, is the same license as for the pristine package itself (unless the
+# license for the pristine package is not an Open Source License, in which
+# case the license is the MIT License). An "Open Source License" is a
+# license that conforms to the Open Source Definition (Version 1.9)
+# published by the Open Source Initiative.
Name: python-hatch-tryton
-Version: 0.1.0
+Version: 0.1.1
Release: 0
Summary: A hatchling plugin for Tryton
License: MIT
URL: https://www.tryton.org/
Source:
https://files.pythonhosted.org/packages/source/h/hatch-tryton/hatch_tryton-%{version}.tar.gz
-BuildRequires: python-rpm-macros
BuildRequires: %{python_module hatchling >= 1}
BuildRequires: %{python_module pip}
+BuildRequires: python-rpm-macros
# SECTION test requirements
BuildRequires: %{python_module pytest}
# /SECTION
++++++ hatch_tryton-0.1.0.tar.gz -> hatch_tryton-0.1.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/hatch_tryton-0.1.0/.flake8
new/hatch_tryton-0.1.1/.flake8
--- old/hatch_tryton-0.1.0/.flake8 2020-02-02 01:00:00.000000000 +0100
+++ new/hatch_tryton-0.1.1/.flake8 1970-01-01 01:00:00.000000000 +0100
@@ -1,2 +0,0 @@
-[flake8]
-ignore=E123,E124,E126,E128,W503
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/hatch_tryton-0.1.0/.gitignore
new/hatch_tryton-0.1.1/.gitignore
--- old/hatch_tryton-0.1.0/.gitignore 2026-04-25 21:43:05.699813980 +0200
+++ new/hatch_tryton-0.1.1/.gitignore 1970-01-01 01:00:00.000000000 +0100
@@ -1 +0,0 @@
-symbolic link to Sync/dotfiles/git/dot-gitignore
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/hatch_tryton-0.1.0/.gitlab-ci.yml
new/hatch_tryton-0.1.1/.gitlab-ci.yml
--- old/hatch_tryton-0.1.0/.gitlab-ci.yml 2020-02-02 01:00:00.000000000
+0100
+++ new/hatch_tryton-0.1.1/.gitlab-ci.yml 1970-01-01 01:00:00.000000000
+0100
@@ -1,66 +0,0 @@
-workflow:
- rules:
- - if: $CI_COMMIT_BRANCH =~ /^topic\/.*/ && $CI_PIPELINE_SOURCE == "push"
- when: never
- - when: always
-
-stages:
- - check
- - test
-
-.check:
- stage: check
- image: ${CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX}/tryton/ci
-
-check-flake8:
- extends: .check
- script:
- - flake8
-
-check-isort:
- extends: .check
- script:
- - isort -m VERTICAL_GRID -c .
-
-check-dist:
- extends: .check
- before_script:
- - pip install build twine
- script:
- - pyproject-build
- - twine check dist/*
-
-.test:
- stage: test
-
-.test-tox:
- extends: .test
- variables:
- PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
- cache:
- paths:
- - .cache/pip
- before_script:
- - pip install tox
- coverage: '/(?i)total.*? (100(?:\.0+)?\%|[1-9]?\d(?:\.\d+)?\%)$/'
- artifacts:
- reports:
- junit: junit.xml
- coverage_report:
- coverage_format: cobertura
- path: coverage.xml
-
-test-tox-python:
- extends: .test-tox
- image: ${CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX}/python:${PYTHON_VERSION}
- script:
- - tox -e "py${PYTHON_VERSION/./}" -- -v --output-file junit.xml
- parallel:
- matrix:
- - PYTHON_VERSION: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
-
-test-tox-pypy:
- extends: .test-tox
- image: ${CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX}/pypy:3
- script:
- - tox -e pypy3 -- -v --output-file junit.xml
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/hatch_tryton-0.1.0/.hgtags
new/hatch_tryton-0.1.1/.hgtags
--- old/hatch_tryton-0.1.0/.hgtags 2020-02-02 01:00:00.000000000 +0100
+++ new/hatch_tryton-0.1.1/.hgtags 1970-01-01 01:00:00.000000000 +0100
@@ -1 +0,0 @@
-47af3905024693b78a68aa9a69ca82fbcf7ab27b 0.1.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/hatch_tryton-0.1.0/CHANGELOG
new/hatch_tryton-0.1.1/CHANGELOG
--- old/hatch_tryton-0.1.0/CHANGELOG 2020-02-02 01:00:00.000000000 +0100
+++ new/hatch_tryton-0.1.1/CHANGELOG 1970-01-01 01:00:00.000000000 +0100
@@ -1,4 +0,0 @@
-
-Version 0.1.0 - 2026-03-19
---------------------------
-Initial release
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/hatch_tryton-0.1.0/PKG-INFO
new/hatch_tryton-0.1.1/PKG-INFO
--- old/hatch_tryton-0.1.0/PKG-INFO 2020-02-02 01:00:00.000000000 +0100
+++ new/hatch_tryton-0.1.1/PKG-INFO 2020-02-02 01:00:00.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 2.4
Name: hatch-tryton
-Version: 0.1.0
+Version: 0.1.1
Summary: A hatchling plugin for Tryton
Project-URL: homepage, https://www.tryton.org/
Project-URL: changelog,
https://code.tryton.org/hatch-tryton/-/blob/branch/default/CHANGELOG
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/hatch_tryton-0.1.0/hatch_tryton/__init__.py
new/hatch_tryton-0.1.1/hatch_tryton/__init__.py
--- old/hatch_tryton-0.1.0/hatch_tryton/__init__.py 2020-02-02
01:00:00.000000000 +0100
+++ new/hatch_tryton-0.1.1/hatch_tryton/__init__.py 2020-02-02
01:00:00.000000000 +0100
@@ -1,4 +1,4 @@
# This file is part of hatch-tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
-__version__ = '0.1.0'
+__version__ = '0.1.1'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/hatch_tryton-0.1.0/pyproject.toml
new/hatch_tryton-0.1.1/pyproject.toml
--- old/hatch_tryton-0.1.0/pyproject.toml 2020-02-02 01:00:00.000000000
+0100
+++ new/hatch_tryton-0.1.1/pyproject.toml 2020-02-02 01:00:00.000000000
+0100
@@ -38,3 +38,6 @@
[tool.hatch.version]
path = 'hatch_tryton/__init__.py'
+
+[tool.hatch.build]
+packages = ['hatch_tryton']
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/hatch_tryton-0.1.0/tox.ini
new/hatch_tryton-0.1.1/tox.ini
--- old/hatch_tryton-0.1.0/tox.ini 2020-02-02 01:00:00.000000000 +0100
+++ new/hatch_tryton-0.1.1/tox.ini 1970-01-01 01:00:00.000000000 +0100
@@ -1,14 +0,0 @@
-[tox]
-envlist = py39, py310, py311, py312, py313, py314, pypy3
-
-[testenv]
-usedevelop = true
-commands =
- coverage run --omit=*/tests/*,*/.tox/* -m xmlrunner discover -s
hatch_tryton.tests {posargs}
-commands_post =
- coverage report
- coverage xml
-deps =
- coverage
- unittest-xml-reporting
-passenv = *