Hello community,

here is the log from the commit of package python-azure-datalake-store for 
openSUSE:Factory checked in at 2020-08-29 20:35:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-azure-datalake-store (Old)
 and      /work/SRC/openSUSE:Factory/.python-azure-datalake-store.new.3399 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-azure-datalake-store"

Sat Aug 29 20:35:11 2020 rev:8 rq:829782 version:0.0.49

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-azure-datalake-store/python-azure-datalake-store.changes
  2020-01-13 22:20:29.250489373 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-azure-datalake-store.new.3399/python-azure-datalake-store.changes
        2020-08-29 20:35:20.785288433 +0200
@@ -1,0 +2,9 @@
+Wed Aug 26 12:51:11 UTC 2020 - John Paul Adrian Glaubitz 
<adrian.glaub...@suse.com>
+
+- New upstream release
+  + Version 0.0.49
+  + For detailed information about changes see the
+    HISTORY.txt file provided with this package
+- Move python-futures from BuildRequires to Requires as it is a runtime 
dependency
+
+-------------------------------------------------------------------

Old:
----
  azure-datalake-store-0.0.48.tar.gz

New:
----
  azure-datalake-store-0.0.49.tar.gz

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

Other differences:
------------------
++++++ python-azure-datalake-store.spec ++++++
--- /var/tmp/diff_new_pack.7cFw4N/_old  2020-08-29 20:35:21.653288798 +0200
+++ /var/tmp/diff_new_pack.7cFw4N/_new  2020-08-29 20:35:21.653288798 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-azure-datalake-store
-Version:        0.0.48
+Version:        0.0.49
 Release:        0
 Summary:        Microsoft Azure Data Lake Store Client Library
 License:        MIT
@@ -30,12 +30,12 @@
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
-%ifpython2
-BuildRequires:  python-futures
-%endif
 Requires:       python-adal >= 0.4.2
 Requires:       python-azure-nspkg >= 3.0.0
 Requires:       python-cffi
+%ifpython2
+Requires:       python-futures
+%endif
 Requires:       python-requests >= 2.20.0
 Conflicts:      python-azure-sdk <= 2.0.0
 

++++++ azure-datalake-store-0.0.48.tar.gz -> azure-datalake-store-0.0.49.tar.gz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-datalake-store-0.0.48/HISTORY.rst 
new/azure-datalake-store-0.0.49/HISTORY.rst
--- old/azure-datalake-store-0.0.48/HISTORY.rst 2019-10-24 21:52:21.000000000 
+0200
+++ new/azure-datalake-store-0.0.49/HISTORY.rst 2020-08-06 02:12:51.000000000 
+0200
@@ -3,6 +3,12 @@
 Release History
 ===============
 
+0.0.49 (2020-08-05)
++++++++++++++++++++
+* Fix bug with NoRetryPolicy
+* Remove Python 3.4,5 in travis configuration.
+* Fix logging for unicode
+
 0.0.48 (2019-10-18)
 +++++++++++++++++++
 * Buffer writes to prevent out of memory problems
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-datalake-store-0.0.48/PKG-INFO 
new/azure-datalake-store-0.0.49/PKG-INFO
--- old/azure-datalake-store-0.0.48/PKG-INFO    2019-10-24 22:03:06.000000000 
+0200
+++ new/azure-datalake-store-0.0.49/PKG-INFO    2020-08-06 02:22:49.000000000 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: azure-datalake-store
-Version: 0.0.48
+Version: 0.0.49
 Summary: Azure Data Lake Store Filesystem Client Library for Python
 Home-page: https://github.com/Azure/azure-data-lake-store-python
 Author: Microsoft Corporation
@@ -247,6 +247,12 @@
         Release History
         ===============
         
+        0.0.49 (2020-08-05)
+        +++++++++++++++++++
+        * Fix bug with NoRetryPolicy
+        * Remove Python 3.4,5 in travis configuration.
+        * Fix logging for unicode
+        
         0.0.48 (2019-10-18)
         +++++++++++++++++++
         * Buffer writes to prevent out of memory problems
@@ -498,4 +504,5 @@
 Classifier: Programming Language :: Python :: 3.4
 Classifier: Programming Language :: Python :: 3.5
 Classifier: Programming Language :: Python :: 3.6
+Classifier: Programming Language :: Python :: 3.7
 Classifier: License :: OSI Approved :: MIT License
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/azure-datalake-store-0.0.48/azure/datalake/store/__init__.py 
new/azure-datalake-store-0.0.49/azure/datalake/store/__init__.py
--- old/azure-datalake-store-0.0.48/azure/datalake/store/__init__.py    
2019-10-24 21:52:21.000000000 +0200
+++ new/azure-datalake-store-0.0.49/azure/datalake/store/__init__.py    
2020-08-06 02:12:51.000000000 +0200
@@ -6,7 +6,7 @@
 # license information.
 # --------------------------------------------------------------------------
 
-__version__ = "0.0.48"
+__version__ = "0.0.49"
 
 from .core import AzureDLFileSystem
 from .multithread import ADLDownloader
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/azure-datalake-store-0.0.48/azure/datalake/store/lib.py 
new/azure-datalake-store-0.0.49/azure/datalake/store/lib.py
--- old/azure-datalake-store-0.0.48/azure/datalake/store/lib.py 2019-10-24 
21:52:21.000000000 +0200
+++ new/azure-datalake-store-0.0.49/azure/datalake/store/lib.py 2020-08-06 
02:12:51.000000000 +0200
@@ -307,15 +307,15 @@
         check_token_internal()
 
     def _log_request(self, method, url, op, path, params, headers, 
retry_count):
-        msg = "HTTP Request\n{} {}\n".format(method.upper(), url)
-        msg += "{} '{}' {}\n\n".format(
-            op, path,
-            " ".join(["{}={}".format(key, params[key]) for key in params]))
-        msg += "\n".join(["{}: {}".format(header, headers[header])
+        msg = u"HTTP Request\n{} {}\n".format(method.upper(), url)
+        param_str = u" ".join([u"{}={}".format(key, params[key]) for key in 
params])
+        msg += u"{} '{}' {}\n\n".format(
+            op, path, param_str)
+        msg += u"\n".join([u"{}: {}".format(header, headers[header])
                           for header in headers if header != 'Authorization'])
-        msg += "\nAuthorization header length:" + 
str(len(headers['Authorization']))
+        msg += u"\nAuthorization header length:" + 
str(len(headers['Authorization']))
         if retry_count > 0:
-            msg += "retry-count:{}".format(retry_count)
+            msg += u"retry-count:{}".format(retry_count)
         logger.debug(msg)
 
     def _content_truncated(self, response):
@@ -324,27 +324,27 @@
         return int(response.headers['content-length']) > MAX_CONTENT_LENGTH
 
     def _log_response(self, response, payload=False):
-        msg = "HTTP Response\n{}\n{}".format(
+        msg = u"HTTP Response\n{}\n{}".format(
             response.status_code,
-            "\n".join(["{}: {}".format(header, response.headers[header])
+            u"\n".join([u"{}: {}".format(header, response.headers[header])
                        for header in response.headers]))
         if payload:
-            msg += "\n\n{}".format(response.content[:MAX_CONTENT_LENGTH])
+            msg += u"\n\n{}".format(response.content[:MAX_CONTENT_LENGTH])
             if self._content_truncated(response):
-                msg += "\n(Response body was truncated)"
+                msg += u"\n(Response body was truncated)"
         logger.debug(msg)
 
     def log_response_and_raise(self, response, exception, level=logging.ERROR):
-        msg = "Exception " + repr(exception)
+        msg = u"Exception " + repr(exception)
         if response is not None:
-            msg += "\n{}\n{}".format(
+            msg += u"\n{}\n{}".format(
                 response.status_code,
-                "\n".join([
-                    "{}: {}".format(header, response.headers[header])
+                u"\n".join([
+                    u"{}: {}".format(header, response.headers[header])
                     for header in response.headers]))
-            msg += "\n\n{}".format(response.content[:MAX_CONTENT_LENGTH])
+            msg += u"\n\n{}".format(response.content[:MAX_CONTENT_LENGTH])
             if self._content_truncated(response):
-                msg += "\n(Response body was truncated)"
+                msg += u"\n(Response body was truncated)"
         logger.log(level, msg)
         raise exception
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/azure-datalake-store-0.0.48/azure/datalake/store/retry.py 
new/azure-datalake-store-0.0.49/azure/datalake/store/retry.py
--- old/azure-datalake-store-0.0.48/azure/datalake/store/retry.py       
2019-10-24 21:52:21.000000000 +0200
+++ new/azure-datalake-store-0.0.49/azure/datalake/store/retry.py       
2020-08-06 02:12:51.000000000 +0200
@@ -21,12 +21,12 @@
 
 
 class RetryPolicy:
-    def should_retry(self):
+    def should_retry(self, *args):
         pass
 
 
 class NoRetryPolicy(RetryPolicy):
-    def should_retry(self):
+    def should_retry(self, *args):
         return False
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/azure-datalake-store-0.0.48/azure_datalake_store.egg-info/PKG-INFO 
new/azure-datalake-store-0.0.49/azure_datalake_store.egg-info/PKG-INFO
--- old/azure-datalake-store-0.0.48/azure_datalake_store.egg-info/PKG-INFO      
2019-10-24 22:03:06.000000000 +0200
+++ new/azure-datalake-store-0.0.49/azure_datalake_store.egg-info/PKG-INFO      
2020-08-06 02:22:49.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: azure-datalake-store
-Version: 0.0.48
+Version: 0.0.49
 Summary: Azure Data Lake Store Filesystem Client Library for Python
 Home-page: https://github.com/Azure/azure-data-lake-store-python
 Author: Microsoft Corporation
@@ -247,6 +247,12 @@
         Release History
         ===============
         
+        0.0.49 (2020-08-05)
+        +++++++++++++++++++
+        * Fix bug with NoRetryPolicy
+        * Remove Python 3.4,5 in travis configuration.
+        * Fix logging for unicode
+        
         0.0.48 (2019-10-18)
         +++++++++++++++++++
         * Buffer writes to prevent out of memory problems
@@ -498,4 +504,5 @@
 Classifier: Programming Language :: Python :: 3.4
 Classifier: Programming Language :: Python :: 3.5
 Classifier: Programming Language :: Python :: 3.6
+Classifier: Programming Language :: Python :: 3.7
 Classifier: License :: OSI Approved :: MIT License
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-datalake-store-0.0.48/setup.py 
new/azure-datalake-store-0.0.49/setup.py
--- old/azure-datalake-store-0.0.48/setup.py    2019-10-24 21:52:21.000000000 
+0200
+++ new/azure-datalake-store-0.0.49/setup.py    2020-08-06 02:12:51.000000000 
+0200
@@ -35,6 +35,7 @@
           'Programming Language :: Python :: 3.4',
           'Programming Language :: Python :: 3.5',
           'Programming Language :: Python :: 3.6',
+          'Programming Language :: Python :: 3.7',
           'License :: OSI Approved :: MIT License',
       ],
       packages=find_packages(exclude=['tests',


Reply via email to