Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-fleming for openSUSE:Factory checked in at 2022-10-12 18:26:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-fleming (Old) and /work/SRC/openSUSE:Factory/.python-fleming.new.2275 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-fleming" Wed Oct 12 18:26:50 2022 rev:2 rq:1010209 version:0.7.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-fleming/python-fleming.changes 2020-11-23 10:43:29.806183499 +0100 +++ /work/SRC/openSUSE:Factory/.python-fleming.new.2275/python-fleming.changes 2022-10-12 18:28:29.058190830 +0200 @@ -1,0 +2,9 @@ +Wed Oct 12 03:23:44 UTC 2022 - Yogalakshmi Arunachalam <[email protected]> + +- Update to version 0.7.0: + * Add support for python 3.9, 3.10 + * Drop support for python 3.5, 3.6 + * Add support for python 3.8 + * Drop python 2.7 + +------------------------------------------------------------------- Old: ---- fleming-0.5.0.tar.gz New: ---- fleming-0.7.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-fleming.spec ++++++ --- /var/tmp/diff_new_pack.wmhVgB/_old 2022-10-12 18:28:29.510191826 +0200 +++ /var/tmp/diff_new_pack.wmhVgB/_new 2022-10-12 18:28:29.518191843 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-fleming # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -16,15 +16,16 @@ # -%{?!python_module:%define python_module() python-%{**} python3-%{**}} +%{?!python_module:%define python_module() python3-%{**}} Name: python-fleming -Version: 0.5.0 +Version: 0.7.0 Release: 0 Summary: Python helpers for manipulating datetime objects relative to time zones License: MIT Group: Development/Languages/Python URL: https://github.com/ambitioninc/fleming Source: https://github.com/ambitioninc/fleming/archive/%{version}.tar.gz#/fleming-%{version}.tar.gz +BuildRequires: %{python_module base >= 3.7} BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros ++++++ fleming-0.5.0.tar.gz -> fleming-0.7.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fleming-0.5.0/.travis.yml new/fleming-0.7.0/.travis.yml --- old/fleming-0.5.0/.travis.yml 2019-07-11 16:45:24.000000000 +0200 +++ new/fleming-0.7.0/.travis.yml 2022-04-07 22:21:22.000000000 +0200 @@ -2,17 +2,16 @@ sudo: false language: python python: - - '2.7' - - '3.5' - - '3.6' - '3.7' + - '3.8' + - '3.9' install: - - pip install flake8 nose>=1.3.0 coverage coveralls + - pip install -r requirements/requirements_testing.txt - pip install -r requirements/docs.txt - python setup.py install script: - flake8 . - python setup.py nosetests - python setup.py build_sphinx -after_success: - coveralls +#after_success: +# coveralls # this is commented out because it fails to install on python 3.7 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fleming-0.5.0/docs/release_notes.rst new/fleming-0.7.0/docs/release_notes.rst --- old/fleming-0.5.0/docs/release_notes.rst 2019-07-11 16:45:24.000000000 +0200 +++ new/fleming-0.7.0/docs/release_notes.rst 2022-04-07 22:21:22.000000000 +0200 @@ -1,6 +1,16 @@ Release Notes ============= +v0.7.0 +------ +* Add support for python 3.9, 3.10 +* Drop support for python 3.5, 3.6 + +v0.6.0 +------ +* Add support for python 3.8 +* Drop python 2.7 + v0.5.0 ------ * Remove support for python 3.3 and 3.4 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fleming-0.5.0/fleming/version.py new/fleming-0.7.0/fleming/version.py --- old/fleming-0.5.0/fleming/version.py 2019-07-11 16:45:24.000000000 +0200 +++ new/fleming-0.7.0/fleming/version.py 2022-04-07 22:21:22.000000000 +0200 @@ -1,2 +1,2 @@ # pragma: no cover -__version__ = '0.5.0' +__version__ = '0.7.0' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fleming-0.5.0/requirements/docs.txt new/fleming-0.7.0/requirements/docs.txt --- old/fleming-0.5.0/requirements/docs.txt 2019-07-11 16:45:24.000000000 +0200 +++ new/fleming-0.7.0/requirements/docs.txt 2022-04-07 22:21:22.000000000 +0200 @@ -1,2 +1,2 @@ -Sphinx==1.2.2 +Sphinx sphinx_rtd_theme diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fleming-0.5.0/requirements/requirements_testing.txt new/fleming-0.7.0/requirements/requirements_testing.txt --- old/fleming-0.5.0/requirements/requirements_testing.txt 1970-01-01 01:00:00.000000000 +0100 +++ new/fleming-0.7.0/requirements/requirements_testing.txt 2022-04-07 22:21:22.000000000 +0200 @@ -0,0 +1,4 @@ +flake8 +nose +coverage +#coveralls # this fails to install on python 3.7 so leaving it out for now diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fleming-0.5.0/setup.py new/fleming-0.7.0/setup.py --- old/fleming-0.5.0/setup.py 2019-07-11 16:45:24.000000000 +0200 +++ new/fleming-0.7.0/setup.py 2022-04-07 22:21:22.000000000 +0200 @@ -45,10 +45,9 @@ 'Topic :: Utilities', 'Topic :: Software Development :: Libraries :: Python Modules', 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', ], keywords='python datetime pytz timezone timedelta arithmetic floor conversion', url='https://github.com/ambitioninc/fleming', @@ -62,7 +61,7 @@ ], test_suite='nose.collector', tests_require=[ - 'coverage==3.7.1', + 'coverage>=3.7.1', 'nose>=1.3.0', ], include_package_data=True,
