[Python-modules-commits] [python-gitdb] 01/09: New upstream version 2.0.3

Takaki Taniguchi takaki at moszumanska.debian.org
Sat Feb 3 10:06:29 UTC 2018


This is an automated email from the git hooks/post-receive script.

takaki pushed a commit to branch master
in repository python-gitdb.

commit 9bfccaf469a0e3d21ad5a30e55c40cf54187f0f2
Author: TANIGUCHI Takaki <takaki at asis.media-as.org>
Date:   Fri Oct 6 14:57:09 2017 +0900

    New upstream version 2.0.3
---
 PKG-INFO                 | 3 +--
 gitdb/__init__.py        | 2 +-
 gitdb/db/ref.py          | 3 ++-
 gitdb2.egg-info/PKG-INFO | 3 +--
 setup.py                 | 3 +--
 5 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/PKG-INFO b/PKG-INFO
index 1187f7f..0ba8068 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: gitdb2
-Version: 2.0.2
+Version: 2.0.3
 Summary: Git Object Database
 Home-page: https://github.com/gitpython-developers/gitdb
 Author: Sebastian Thiel
@@ -25,4 +25,3 @@ Classifier: Programming Language :: Python :: 3.2
 Classifier: Programming Language :: Python :: 3.3
 Classifier: Programming Language :: Python :: 3.4
 Classifier: Programming Language :: Python :: 3.5
-Classifier: Programming Language :: Python :: 3.6
diff --git a/gitdb/__init__.py b/gitdb/__init__.py
index 4d58c40..e184e4b 100644
--- a/gitdb/__init__.py
+++ b/gitdb/__init__.py
@@ -29,7 +29,7 @@ _init_externals()
 __author__ = "Sebastian Thiel"
 __contact__ = "byronimo at gmail.com"
 __homepage__ = "https://github.com/gitpython-developers/gitdb"
-version_info = (2, 0, 2)
+version_info = (2, 0, 3)
 __version__ = '.'.join(str(i) for i in version_info)
 
 
diff --git a/gitdb/db/ref.py b/gitdb/db/ref.py
index 2e3db86..94a2f01 100644
--- a/gitdb/db/ref.py
+++ b/gitdb/db/ref.py
@@ -2,6 +2,7 @@
 #
 # This module is part of GitDB and is released under
 # the New BSD License: http://www.opensource.org/licenses/bsd-license.php
+import codecs
 from gitdb.db.base import (
     CompoundDB,
 )
@@ -41,7 +42,7 @@ class ReferenceDB(CompoundDB):
         # try to get as many as possible, don't fail if some are unavailable
         ref_paths = list()
         try:
-            with open(self._ref_file, 'r') as f:
+            with codecs.open(self._ref_file, 'r', encoding="utf-8") as f:
                 ref_paths = [l.strip() for l in f]
         except (OSError, IOError):
             pass
diff --git a/gitdb2.egg-info/PKG-INFO b/gitdb2.egg-info/PKG-INFO
index 1187f7f..0ba8068 100644
--- a/gitdb2.egg-info/PKG-INFO
+++ b/gitdb2.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: gitdb2
-Version: 2.0.2
+Version: 2.0.3
 Summary: Git Object Database
 Home-page: https://github.com/gitpython-developers/gitdb
 Author: Sebastian Thiel
@@ -25,4 +25,3 @@ Classifier: Programming Language :: Python :: 3.2
 Classifier: Programming Language :: Python :: 3.3
 Classifier: Programming Language :: Python :: 3.4
 Classifier: Programming Language :: Python :: 3.5
-Classifier: Programming Language :: Python :: 3.6
diff --git a/setup.py b/setup.py
index 2e673f6..4bff11d 100755
--- a/setup.py
+++ b/setup.py
@@ -7,7 +7,7 @@ from setuptools import setup
 __author__ = "Sebastian Thiel"
 __contact__ = "byronimo at gmail.com"
 __homepage__ = "https://github.com/gitpython-developers/gitdb"
-version_info = (2, 0, 2)
+version_info = (2, 0, 3)
 __version__ = '.'.join(str(i) for i in version_info)
 
 setup(
@@ -41,6 +41,5 @@ setup(
         "Programming Language :: Python :: 3.3",
         "Programming Language :: Python :: 3.4",
         "Programming Language :: Python :: 3.5",
-        "Programming Language :: Python :: 3.6",
     ]
 )

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-gitdb.git



More information about the Python-modules-commits mailing list