Skip to content

Commit ef75de5

Browse files
committed
releasing package dulwich version 0.19.8-1
2 parents a0fb0d2 + 8cdd736 commit ef75de5

File tree

8 files changed

+24
-8
lines changed

8 files changed

+24
-8
lines changed

NEWS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
0.19.8 2018-11-06
2+
3+
* Fix encoding when reading README file in setup.py.
4+
(egor <[email protected]>, #668)
5+
16
0.19.7 2018-11-05
27

38
CHANGES

PKG-INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: dulwich
3-
Version: 0.19.7
3+
Version: 0.19.8
44
Summary: Python Git Library
55
Home-page: https://www.dulwich.io/
66
Author: Jelmer Vernooij
@@ -102,7 +102,7 @@ Description: [![Build Status](https://travis-ci.org/dulwich/dulwich.png?branch=m
102102
Supported versions of Python
103103
----------------------------
104104

105-
At the moment, Dulwich supports (and is tested on) CPython 2.7, 3.3, 3.4, 3.5, 3.6 and Pypy.
105+
At the moment, Dulwich supports (and is tested on) CPython 2.7, 3.4, 3.5, 3.6 and Pypy.
106106

107107
Keywords: git vcs
108108
Platform: UNKNOWN

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,4 @@ file and [list of open issues](https://github.com/dulwich/dulwich/issues).
9191
Supported versions of Python
9292
----------------------------
9393

94-
At the moment, Dulwich supports (and is tested on) CPython 2.7, 3.3, 3.4, 3.5, 3.6 and Pypy.
94+
At the moment, Dulwich supports (and is tested on) CPython 2.7, 3.4, 3.5, 3.6 and Pypy.

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
dulwich (0.19.8-1) unstable; urgency=medium
2+
3+
* New upstream release.
4+
5+
-- Jelmer Vernooij <[email protected]> Wed, 07 Nov 2018 01:52:52 +0000
6+
17
dulwich (0.19.7-1) unstable; urgency=medium
28

39
* Run wrap-and-sort.

dulwich.egg-info/PKG-INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: dulwich
3-
Version: 0.19.7
3+
Version: 0.19.8
44
Summary: Python Git Library
55
Home-page: https://www.dulwich.io/
66
Author: Jelmer Vernooij
@@ -102,7 +102,7 @@ Description: [![Build Status](https://travis-ci.org/dulwich/dulwich.png?branch=m
102102
Supported versions of Python
103103
----------------------------
104104

105-
At the moment, Dulwich supports (and is tested on) CPython 2.7, 3.3, 3.4, 3.5, 3.6 and Pypy.
105+
At the moment, Dulwich supports (and is tested on) CPython 2.7, 3.4, 3.5, 3.6 and Pypy.
106106

107107
Keywords: git vcs
108108
Platform: UNKNOWN

dulwich/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222

2323
"""Python implementation of the Git file formats and protocols."""
2424

25-
__version__ = (0, 19, 7)
25+
__version__ = (0, 19, 8)

dulwich/tests/test_refs.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -506,6 +506,9 @@ def test_non_ascii(self):
506506
self.assertEqual(expected_refs, self._repo.get_refs())
507507

508508
def test_cyrillic(self):
509+
if sys.platform == 'win32':
510+
raise SkipTest(
511+
"filesystem encoding doesn't support arbitrary bytes")
509512
# reported in https://github.com/dulwich/dulwich/issues/608
510513
name = b'\xcd\xee\xe2\xe0\xff\xe2\xe5\xf2\xea\xe01'
511514
encoded_ref = b'refs/heads/' + name

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@
1111
else:
1212
has_setuptools = True
1313
from distutils.core import Distribution
14+
import io
1415
import os
1516
import sys
1617

17-
dulwich_version_string = '0.19.7'
18+
dulwich_version_string = '0.19.8'
1819

1920
include_dirs = []
2021
# Windows MSVC support
@@ -83,7 +84,8 @@ def has_ext_modules(self):
8384
setup_kwargs['test_suite'] = 'dulwich.tests.test_suite'
8485
setup_kwargs['tests_require'] = tests_require
8586

86-
with open('README.md', 'r') as f:
87+
with io.open(os.path.join(os.path.dirname(__file__), "README.md"),
88+
encoding="utf-8") as f:
8789
description = f.read()
8890

8991
setup(name='dulwich',

0 commit comments

Comments
 (0)