Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-iso8601 for openSUSE:Factory checked in at 2021-03-12 13:30:57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-iso8601 (Old) and /work/SRC/openSUSE:Factory/.python-iso8601.new.2401 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-iso8601" Fri Mar 12 13:30:57 2021 rev:18 rq:877587 version:0.1.14 Changes: -------- --- /work/SRC/openSUSE:Factory/python-iso8601/python-iso8601.changes 2020-10-23 12:18:29.616532712 +0200 +++ /work/SRC/openSUSE:Factory/.python-iso8601.new.2401/python-iso8601.changes 2021-03-12 13:31:14.342150733 +0100 @@ -1,0 +2,13 @@ +Thu Feb 18 21:45:15 UTC 2021 - Dirk M??ller <[email protected]> + +- update to 0.1.14: + * Add GitHub build actions for project + * Add project URLs in setup.py (thanks to Steve Piercy) + * Update README links (thanks to Steve Piercy) + * Fix handling of README in setup.py (encoding fun in 3.5, 3.6 and pypy3) + * Fix README links (thanks to Chris Barker) + * Add Python 3.9 to test matrix (thanks to Luciano Mammino) + * Add type hints (thanks to Brett Cannon) + * Derive `ParseError` from `ValueError` (thanks to Lex Robinson) + +------------------------------------------------------------------- Old: ---- iso8601-0.1.13.tar.gz New: ---- iso8601-0.1.14.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-iso8601.spec ++++++ --- /var/tmp/diff_new_pack.QYMKX1/_old 2021-03-12 13:31:14.882151490 +0100 +++ /var/tmp/diff_new_pack.QYMKX1/_new 2021-03-12 13:31:14.886151496 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-iso8601 # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 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-iso8601 -Version: 0.1.13 +Version: 0.1.14 Release: 0 Summary: Python module to parse ISO 8601 dates License: MIT ++++++ iso8601-0.1.13.tar.gz -> iso8601-0.1.14.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/iso8601-0.1.13/PKG-INFO new/iso8601-0.1.14/PKG-INFO --- old/iso8601-0.1.13/PKG-INFO 2020-09-11 19:10:01.248737800 +0200 +++ new/iso8601-0.1.14/PKG-INFO 2021-02-05 17:06:25.540946500 +0100 @@ -1,11 +1,13 @@ Metadata-Version: 2.1 Name: iso8601 -Version: 0.1.13 +Version: 0.1.14 Summary: Simple module to parse ISO 8601 dates Home-page: https://github.com/micktwomey/pyiso8601 Author: Michael Twomey Author-email: [email protected] License: MIT +Project-URL: Documentation, https://pyiso8601.readthedocs.org/ +Project-URL: Issue Tracker, https://github.com/micktwomey/pyiso8601/issues Description: Simple module to parse ISO 8601 dates This module parses the most common forms of ISO 8601 date strings (e.g. @@ -20,7 +22,7 @@ If you want more full featured parsing look at: - - http://labix.org/python-dateutil - python-dateutil + - https://labix.org/python-dateutil - python-dateutil Parsed Formats ============== @@ -65,19 +67,17 @@ Homepage ======== - - Documentation: http://pyiso8601.readthedocs.org/ - - Source: https://bitbucket.org/micktwomey/pyiso8601/ - - This was originally hosted at https://code.google.com/p/pyiso8601/ + - Documentation: https://pyiso8601.readthedocs.org/ + - Source: https://github.com/micktwomey/pyiso8601 References ========== - - http://en.wikipedia.org/wiki/ISO_8601 + - https://en.wikipedia.org/wiki/ISO_8601 - - http://www.cl.cam.ac.uk/~mgk25/iso-time.html - simple overview + - https://www.cl.cam.ac.uk/~mgk25/iso-time.html - simple overview - - http://hydracen.com/dx/iso8601.htm - more detailed enumeration of valid formats. + - https://web.archive.org/web/20090309040208/http://hydracen.com/dx/iso8601.htm - more detailed enumeration of valid formats. Testing ======= @@ -114,8 +114,17 @@ Changes ======= - Unreleased - ---------- + 0.1.14 + ------ + + * Add GitHub build actions for project + * Add project URLs in setup.py (thanks to Steve Piercy) + * Update README links (thanks to Steve Piercy) + * Fix handling of README in setup.py (encoding fun in 3.5, 3.6 and pypy3) + * Fix README links (thanks to Chris Barker) + * Add Python 3.9 to test matrix (thanks to Luciano Mammino) + * Add type hints (thanks to Brett Cannon) + * Derive `ParseError` from `ValueError` (thanks to Lex Robinson) 0.1.13 ------ @@ -136,7 +145,7 @@ * Add support for , as separator for fractional part (thanks to ecksun in https://bitbucket.org/micktwomey/pyiso8601/pull-requests/5/add-support-for-as-separator-for/diff) * Add Python 3.4 and 3.5 to tox test config. * Add PyPy 3 to tox test config. - * Link to documentation at http://pyiso8601.readthedocs.org/ + * Link to documentation at https://pyiso8601.readthedocs.org/ 0.1.10 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/iso8601-0.1.13/README.rst new/iso8601-0.1.14/README.rst --- old/iso8601-0.1.13/README.rst 2020-09-11 19:06:57.000000000 +0200 +++ new/iso8601-0.1.14/README.rst 2021-02-05 17:02:37.000000000 +0100 @@ -12,7 +12,7 @@ If you want more full featured parsing look at: -- http://labix.org/python-dateutil - python-dateutil +- https://labix.org/python-dateutil - python-dateutil Parsed Formats ============== @@ -57,19 +57,17 @@ Homepage ======== -- Documentation: http://pyiso8601.readthedocs.org/ -- Source: https://bitbucket.org/micktwomey/pyiso8601/ - -This was originally hosted at https://code.google.com/p/pyiso8601/ +- Documentation: https://pyiso8601.readthedocs.org/ +- Source: https://github.com/micktwomey/pyiso8601 References ========== -- http://en.wikipedia.org/wiki/ISO_8601 +- https://en.wikipedia.org/wiki/ISO_8601 -- http://www.cl.cam.ac.uk/~mgk25/iso-time.html - simple overview +- https://www.cl.cam.ac.uk/~mgk25/iso-time.html - simple overview -- http://hydracen.com/dx/iso8601.htm - more detailed enumeration of valid formats. +- https://web.archive.org/web/20090309040208/http://hydracen.com/dx/iso8601.htm - more detailed enumeration of valid formats. Testing ======= @@ -106,8 +104,17 @@ Changes ======= -Unreleased ----------- +0.1.14 +------ + +* Add GitHub build actions for project +* Add project URLs in setup.py (thanks to Steve Piercy) +* Update README links (thanks to Steve Piercy) +* Fix handling of README in setup.py (encoding fun in 3.5, 3.6 and pypy3) +* Fix README links (thanks to Chris Barker) +* Add Python 3.9 to test matrix (thanks to Luciano Mammino) +* Add type hints (thanks to Brett Cannon) +* Derive `ParseError` from `ValueError` (thanks to Lex Robinson) 0.1.13 ------ @@ -128,7 +135,7 @@ * Add support for , as separator for fractional part (thanks to ecksun in https://bitbucket.org/micktwomey/pyiso8601/pull-requests/5/add-support-for-as-separator-for/diff) * Add Python 3.4 and 3.5 to tox test config. * Add PyPy 3 to tox test config. -* Link to documentation at http://pyiso8601.readthedocs.org/ +* Link to documentation at https://pyiso8601.readthedocs.org/ 0.1.10 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/iso8601-0.1.13/dev-requirements.txt new/iso8601-0.1.14/dev-requirements.txt --- old/iso8601-0.1.13/dev-requirements.txt 2020-09-11 18:42:29.000000000 +0200 +++ new/iso8601-0.1.14/dev-requirements.txt 2021-02-05 16:55:28.000000000 +0100 @@ -1,7 +1,8 @@ devpi>=1.2.1 +mypy>=0.782 pytest>=2.5.2 Sphinx>=1.2.1 tox-pyenv>=1.0.3 tox>=1.7.0 twine>=1.9.1 -wheel>=0.22.0 \ No newline at end of file +wheel>=0.22.0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/iso8601-0.1.13/iso8601/iso8601.py new/iso8601-0.1.14/iso8601/iso8601.py --- old/iso8601-0.1.13/iso8601/iso8601.py 2020-09-11 18:42:29.000000000 +0200 +++ new/iso8601-0.1.14/iso8601/iso8601.py 2021-02-05 16:55:28.000000000 +0100 @@ -67,7 +67,7 @@ re.VERBOSE ) -class ParseError(Exception): +class ParseError(ValueError): """Raised when there is a problem parsing a date string""" if sys.version_info >= (3, 2, 0): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/iso8601-0.1.13/iso8601.egg-info/PKG-INFO new/iso8601-0.1.14/iso8601.egg-info/PKG-INFO --- old/iso8601-0.1.13/iso8601.egg-info/PKG-INFO 2020-09-11 19:10:01.000000000 +0200 +++ new/iso8601-0.1.14/iso8601.egg-info/PKG-INFO 2021-02-05 17:06:25.000000000 +0100 @@ -1,11 +1,13 @@ Metadata-Version: 2.1 Name: iso8601 -Version: 0.1.13 +Version: 0.1.14 Summary: Simple module to parse ISO 8601 dates Home-page: https://github.com/micktwomey/pyiso8601 Author: Michael Twomey Author-email: [email protected] License: MIT +Project-URL: Documentation, https://pyiso8601.readthedocs.org/ +Project-URL: Issue Tracker, https://github.com/micktwomey/pyiso8601/issues Description: Simple module to parse ISO 8601 dates This module parses the most common forms of ISO 8601 date strings (e.g. @@ -20,7 +22,7 @@ If you want more full featured parsing look at: - - http://labix.org/python-dateutil - python-dateutil + - https://labix.org/python-dateutil - python-dateutil Parsed Formats ============== @@ -65,19 +67,17 @@ Homepage ======== - - Documentation: http://pyiso8601.readthedocs.org/ - - Source: https://bitbucket.org/micktwomey/pyiso8601/ - - This was originally hosted at https://code.google.com/p/pyiso8601/ + - Documentation: https://pyiso8601.readthedocs.org/ + - Source: https://github.com/micktwomey/pyiso8601 References ========== - - http://en.wikipedia.org/wiki/ISO_8601 + - https://en.wikipedia.org/wiki/ISO_8601 - - http://www.cl.cam.ac.uk/~mgk25/iso-time.html - simple overview + - https://www.cl.cam.ac.uk/~mgk25/iso-time.html - simple overview - - http://hydracen.com/dx/iso8601.htm - more detailed enumeration of valid formats. + - https://web.archive.org/web/20090309040208/http://hydracen.com/dx/iso8601.htm - more detailed enumeration of valid formats. Testing ======= @@ -114,8 +114,17 @@ Changes ======= - Unreleased - ---------- + 0.1.14 + ------ + + * Add GitHub build actions for project + * Add project URLs in setup.py (thanks to Steve Piercy) + * Update README links (thanks to Steve Piercy) + * Fix handling of README in setup.py (encoding fun in 3.5, 3.6 and pypy3) + * Fix README links (thanks to Chris Barker) + * Add Python 3.9 to test matrix (thanks to Luciano Mammino) + * Add type hints (thanks to Brett Cannon) + * Derive `ParseError` from `ValueError` (thanks to Lex Robinson) 0.1.13 ------ @@ -136,7 +145,7 @@ * Add support for , as separator for fractional part (thanks to ecksun in https://bitbucket.org/micktwomey/pyiso8601/pull-requests/5/add-support-for-as-separator-for/diff) * Add Python 3.4 and 3.5 to tox test config. * Add PyPy 3 to tox test config. - * Link to documentation at http://pyiso8601.readthedocs.org/ + * Link to documentation at https://pyiso8601.readthedocs.org/ 0.1.10 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/iso8601-0.1.13/setup.py new/iso8601-0.1.14/setup.py --- old/iso8601-0.1.13/setup.py 2020-09-11 19:04:56.000000000 +0200 +++ new/iso8601-0.1.14/setup.py 2021-02-05 16:55:54.000000000 +0100 @@ -5,17 +5,25 @@ except ImportError: from distutils import setup -long_description = open(os.path.join(os.path.dirname(__file__), "README.rst")).read() +long_description = ( + open(os.path.join(os.path.dirname(__file__), "README.rst"), "rb") + .read() + .decode("UTF-8") +) setup( name="iso8601", - version="0.1.13", + version="0.1.14", description=long_description.split("\n")[0], long_description=long_description, long_description_content_type="text/x-rst", author="Michael Twomey", author_email="[email protected]", url="https://github.com/micktwomey/pyiso8601", + project_urls={ + "Documentation": "https://pyiso8601.readthedocs.org/", + "Issue Tracker": "https://github.com/micktwomey/pyiso8601/issues", + }, packages=["iso8601"], license="MIT", classifiers=[ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/iso8601-0.1.13/tox.ini new/iso8601-0.1.14/tox.ini --- old/iso8601-0.1.13/tox.ini 2020-09-11 18:59:59.000000000 +0200 +++ new/iso8601-0.1.14/tox.ini 2021-02-05 16:55:28.000000000 +0100 @@ -1,6 +1,16 @@ [tox] envlist = py27,py35,py36,py37,py38,pypy,pypy3 +[gh-actions] +python = + 2.7: py27 + 3.5: py35 + 3.6: py36 + 3.7: py37 + 3.8: py38 + pypy2: pypy + pypy3: pypy3 + [testenv] deps=pytest>=2.4.2 commands=py.test --verbose iso8601
