Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-confuse for openSUSE:Factory checked in at 2023-05-04 17:10:40 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-confuse (Old) and /work/SRC/openSUSE:Factory/.python-confuse.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-confuse" Thu May 4 17:10:40 2023 rev:3 rq:1084448 version:2.0.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-confuse/python-confuse.changes 2022-09-27 20:14:27.465896516 +0200 +++ /work/SRC/openSUSE:Factory/.python-confuse.new.1533/python-confuse.changes 2023-05-04 17:11:00.216515690 +0200 @@ -1,0 +2,6 @@ +Wed May 3 15:35:55 UTC 2023 - Dirk Müller <dmuel...@suse.com> + +- update to 2.0.1: + * Remove a `<4` Python version requirement bound. + +------------------------------------------------------------------- Old: ---- confuse-2.0.0.tar.gz New: ---- confuse-2.0.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-confuse.spec ++++++ --- /var/tmp/diff_new_pack.OGE3dZ/_old 2023-05-04 17:11:00.644518196 +0200 +++ /var/tmp/diff_new_pack.OGE3dZ/_new 2023-05-04 17:11:00.648518220 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-confuse # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 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 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-confuse -Version: 2.0.0 +Version: 2.0.1 Release: 0 Summary: Painless YAML configuration License: MIT ++++++ confuse-2.0.0.tar.gz -> confuse-2.0.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/confuse-2.0.0/.github/workflows/build.yml new/confuse-2.0.1/.github/workflows/build.yml --- old/confuse-2.0.0/.github/workflows/build.yml 2022-07-16 20:17:32.030247000 +0200 +++ new/confuse-2.0.1/.github/workflows/build.yml 2023-04-02 01:16:18.873592400 +0200 @@ -14,7 +14,7 @@ runs-on: ${{ matrix.os }} strategy: matrix: - python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11-dev'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12-dev'] os: [ubuntu-latest, windows-latest] steps: @@ -32,5 +32,5 @@ name: Style runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: TrueBrain/actions-flake8@master diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/confuse-2.0.0/PKG-INFO new/confuse-2.0.1/PKG-INFO --- old/confuse-2.0.0/PKG-INFO 1970-01-01 01:00:00.000000000 +0100 +++ new/confuse-2.0.1/PKG-INFO 1970-01-01 01:00:00.000000000 +0100 @@ -1,11 +1,11 @@ Metadata-Version: 2.1 Name: confuse -Version: 2.0.0 +Version: 2.0.1 Summary: Painless YAML configuration. Home-page: https://github.com/beetbox/confuse Author: Adrian Sampson Author-email: adr...@radbox.org -Requires-Python: >=3.6, <4 +Requires-Python: >=3.6 Description-Content-Type: text/x-rst Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: MIT License diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/confuse-2.0.0/confuse/__init__.py new/confuse-2.0.1/confuse/__init__.py --- old/confuse-2.0.0/confuse/__init__.py 2022-07-16 20:35:30.821347700 +0200 +++ new/confuse-2.0.1/confuse/__init__.py 2023-04-02 01:26:12.550663700 +0200 @@ -1,7 +1,7 @@ """Painless YAML configuration. """ -__version__ = '2.0.0' +__version__ = '2.0.1' from .exceptions import * # NOQA from .util import * # NOQA diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/confuse-2.0.0/docs/changelog.rst new/confuse-2.0.1/docs/changelog.rst --- old/confuse-2.0.0/docs/changelog.rst 2022-07-16 20:36:06.908936300 +0200 +++ new/confuse-2.0.1/docs/changelog.rst 2023-04-02 01:25:48.238507700 +0200 @@ -1,6 +1,11 @@ Changelog --------- +v2.0.1 +'''''' + +- Remove a `<4` Python version requirement bound. + v2.0.0 '''''' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/confuse-2.0.0/pyproject.toml new/confuse-2.0.1/pyproject.toml --- old/confuse-2.0.0/pyproject.toml 2022-07-16 20:15:25.770918000 +0200 +++ new/confuse-2.0.1/pyproject.toml 2023-04-02 01:24:34.532754700 +0200 @@ -11,7 +11,7 @@ "pyyaml" ] description-file = "README.rst" -requires-python = ">=3.6, <4" +requires-python = ">=3.6" classifiers = [ 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License',