Hello community,

here is the log from the commit of package python3-dateutil for 
openSUSE:Factory checked in at 2016-05-25 21:23:46
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python3-dateutil (Old)
 and      /work/SRC/openSUSE:Factory/.python3-dateutil.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python3-dateutil"

Changes:
--------
--- /work/SRC/openSUSE:Factory/python3-dateutil/python3-dateutil.changes        
2016-03-31 13:02:26.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.python3-dateutil.new/python3-dateutil.changes   
2016-05-25 21:24:02.000000000 +0200
@@ -1,0 +2,20 @@
+Sun May  8 06:59:41 UTC 2016 - [email protected]
+
+- specfile:
+  * changed to https for source url
+  * updated source url to files.pythonhosted.org
+
+
+-------------------------------------------------------------------
+Fri Apr 22 01:27:36 UTC 2016 - [email protected]
+
+- update to version 2.5.3:
+  * Updated zoneinfo to 2016d
+  * Fixed parser bug where unambiguous datetimes fail to parse when
+    dayfirst is set to true. (gh issue #233, pr #234)
+  * Bug in zoneinfo file on platforms such as Google App Engine which
+    do not do not allow importing of subprocess.check_call was
+    reported and fixed by @savraj (gh issue #239, gh pr #240)
+  * Fixed incorrect version in documentation (gh issue #235, pr #243)
+
+-------------------------------------------------------------------

Old:
----
  python-dateutil-2.5.2.tar.gz

New:
----
  python-dateutil-2.5.3.tar.gz

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

Other differences:
------------------
++++++ python3-dateutil.spec ++++++
--- /var/tmp/diff_new_pack.kpOIpv/_old  2016-05-25 21:24:03.000000000 +0200
+++ /var/tmp/diff_new_pack.kpOIpv/_new  2016-05-25 21:24:03.000000000 +0200
@@ -20,9 +20,9 @@
 Summary:        A Python Datetime Library
 License:        BSD-3-Clause
 Group:          Development/Libraries/Python
-Version:        2.5.2
+Version:        2.5.3
 Release:        0
-Source0:        
http://pypi.python.org/packages/source/p/python-dateutil/python-dateutil-%{version}.tar.gz
+Source0:        
https://files.pythonhosted.org/packages/source/p/python-dateutil/python-dateutil-%{version}.tar.gz
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 Url:            https://dateutil.readthedocs.org/en/latest/
 BuildRequires:  python3-devel

++++++ python-dateutil-2.5.2.tar.gz -> python-dateutil-2.5.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-dateutil-2.5.2/NEWS 
new/python-dateutil-2.5.3/NEWS
--- old/python-dateutil-2.5.2/NEWS      2016-03-27 17:39:30.000000000 +0200
+++ new/python-dateutil-2.5.3/NEWS      2016-04-21 02:07:59.000000000 +0200
@@ -1,3 +1,13 @@
+Version 2.5.3
+-------------
+- Updated zoneinfo to 2016d
+- Fixed parser bug where unambiguous datetimes fail to parse when dayfirst is
+  set to true. (gh issue #233, pr #234)
+- Bug in zoneinfo file on platforms such as Google App Engine which do not
+  do not allow importing of subprocess.check_call was reported and fixed by
+  @savraj (gh issue #239, gh pr #240)
+- Fixed incorrect version in documentation (gh issue #235, pr #243)
+
 Version 2.5.2
 -------------
 - Updated zoneinfo to 2016c
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-dateutil-2.5.2/PKG-INFO 
new/python-dateutil-2.5.3/PKG-INFO
--- old/python-dateutil-2.5.2/PKG-INFO  2016-03-27 17:40:33.000000000 +0200
+++ new/python-dateutil-2.5.3/PKG-INFO  2016-04-21 02:09:05.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: python-dateutil
-Version: 2.5.2
+Version: 2.5.3
 Summary: Extensions to the standard Python datetime module
 Home-page: https://dateutil.readthedocs.org
 Author: Paul Ganssle, Yaron de Leeuw
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-dateutil-2.5.2/dateutil/__init__.py 
new/python-dateutil-2.5.3/dateutil/__init__.py
--- old/python-dateutil-2.5.2/dateutil/__init__.py      2016-03-27 
17:36:37.000000000 +0200
+++ new/python-dateutil-2.5.3/dateutil/__init__.py      2016-04-21 
02:08:08.000000000 +0200
@@ -1,2 +1,2 @@
 # -*- coding: utf-8 -*-
-__version__ = "2.5.2"
+__version__ = "2.5.3"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-dateutil-2.5.2/dateutil/parser.py 
new/python-dateutil-2.5.3/dateutil/parser.py
--- old/python-dateutil-2.5.2/dateutil/parser.py        2016-03-27 
17:33:17.000000000 +0200
+++ new/python-dateutil-2.5.3/dateutil/parser.py        2016-04-19 
19:11:40.000000000 +0200
@@ -464,7 +464,7 @@
                     self.find_probable_year_index(_timelex.split(self.tzstr)) 
== 0 or \
                    (yearfirst and self[1] <= 12 and self[2] <= 31):
                     # 99-01-01
-                    if dayfirst:
+                    if dayfirst and self[2] <= 12:
                         year, day, month = self
                     else:
                         year, month, day = self
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-dateutil-2.5.2/dateutil/test/test_parser.py 
new/python-dateutil-2.5.3/dateutil/test/test_parser.py
--- old/python-dateutil-2.5.2/dateutil/test/test_parser.py      2016-03-27 
17:33:17.000000000 +0200
+++ new/python-dateutil-2.5.3/dateutil/test/test_parser.py      2016-04-19 
19:11:40.000000000 +0200
@@ -813,4 +813,18 @@
         self.assertEqual(parse(dtstr, yearfirst=True, dayfirst=True),
                          datetime(2009, 7, 1))
 
+    def testUnambiguousYearFirst(self):
+        dtstr = '2015 09 25'
+        self.assertEqual(parse(dtstr, yearfirst=True),
+                         datetime(2015, 9, 25))
+
+    def testUnambiguousDayFirst(self):
+        dtstr = '2015 09 25'
+        self.assertEqual(parse(dtstr, dayfirst=True), 
+                         datetime(2015, 9, 25))
+
+    def testUnambiguousDayFirstYearFirst(self):
+        dtstr = '2015 09 25'
+        self.assertEqual(parse(dtstr, dayfirst=True, yearfirst=True),
+                         datetime(2015, 9, 25))
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-dateutil-2.5.2/dateutil/zoneinfo/__init__.py 
new/python-dateutil-2.5.3/dateutil/zoneinfo/__init__.py
--- old/python-dateutil-2.5.2/dateutil/zoneinfo/__init__.py     2016-03-26 
19:00:03.000000000 +0100
+++ new/python-dateutil-2.5.3/dateutil/zoneinfo/__init__.py     2016-04-10 
19:12:27.000000000 +0200
@@ -6,7 +6,6 @@
 import shutil
 import json
 
-from subprocess import check_call
 from tarfile import TarFile
 from pkgutil import get_data
 from io import BytesIO
Files old/python-dateutil-2.5.2/dateutil/zoneinfo/dateutil-zoneinfo.tar.gz and 
new/python-dateutil-2.5.3/dateutil/zoneinfo/dateutil-zoneinfo.tar.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/python-dateutil-2.5.2/python_dateutil.egg-info/PKG-INFO 
new/python-dateutil-2.5.3/python_dateutil.egg-info/PKG-INFO
--- old/python-dateutil-2.5.2/python_dateutil.egg-info/PKG-INFO 2016-03-27 
17:40:31.000000000 +0200
+++ new/python-dateutil-2.5.3/python_dateutil.egg-info/PKG-INFO 2016-04-21 
02:09:05.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: python-dateutil
-Version: 2.5.2
+Version: 2.5.3
 Summary: Extensions to the standard Python datetime module
 Home-page: https://dateutil.readthedocs.org
 Author: Paul Ganssle, Yaron de Leeuw
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-dateutil-2.5.2/setup.cfg 
new/python-dateutil-2.5.3/setup.cfg
--- old/python-dateutil-2.5.2/setup.cfg 2016-03-27 17:40:33.000000000 +0200
+++ new/python-dateutil-2.5.3/setup.cfg 2016-04-21 02:09:05.000000000 +0200
@@ -2,7 +2,7 @@
 universal = 1
 
 [egg_info]
-tag_build = 
-tag_date = 0
 tag_svn_revision = 0
+tag_date = 0
+tag_build = 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-dateutil-2.5.2/zonefile_metadata.json 
new/python-dateutil-2.5.3/zonefile_metadata.json
--- old/python-dateutil-2.5.2/zonefile_metadata.json    2016-03-27 
17:33:17.000000000 +0200
+++ new/python-dateutil-2.5.3/zonefile_metadata.json    2016-04-19 
19:15:35.000000000 +0200
@@ -4,9 +4,9 @@
         "https://dateutil.github.io/tzdata/tzdata/";,
         "ftp://ftp.iana.org/tz/releases/";
     ],
-    "tzdata_file": "tzdata2016c.tar.gz",
-    "tzdata_file_sha512": 
"03eab77c8b3176da1dd17d1d9062b151036b01d224f1e4b60f34a2db6899150431f34f4d9f39652648aae3a55326fd6f85d6deefe3f27b36eaed9ef39ed3f53c",
-    "tzversion": "2016c",
+    "tzdata_file": "tzdata2016d.tar.gz",
+    "tzdata_file_sha512": 
"f1beb1793c4c7d18f2dadaf4a928b1476f66b400bda0c87b06155c0dd1c4b4a26bb2f37dc17a3676a2bbe9c1e71a5d8b27a171c797a86464b0bc0d13abfb2f99",
+    "tzversion": "2016d",
     "zonegroups": [
         "africa",
         "antarctica",


Reply via email to