Skip to content

Commit

Permalink
releasing package dulwich version 0.19.8-1
Browse files Browse the repository at this point in the history
  • Loading branch information
jelmer committed Nov 7, 2018
2 parents a0fb0d2 + 8cdd736 commit ef75de5
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 8 deletions.
5 changes: 5 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.19.8 2018-11-06

* Fix encoding when reading README file in setup.py.
(egor <[email protected]>, #668)

0.19.7 2018-11-05

CHANGES
Expand Down
4 changes: 2 additions & 2 deletions PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: dulwich
Version: 0.19.7
Version: 0.19.8
Summary: Python Git Library
Home-page: https://www.dulwich.io/
Author: Jelmer Vernooij
Expand Down Expand Up @@ -102,7 +102,7 @@ Description: [![Build Status](https://travis-ci.org/dulwich/dulwich.png?branch=m
Supported versions of Python
----------------------------

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

Keywords: git vcs
Platform: UNKNOWN
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,4 @@ file and [list of open issues](https://github.com/dulwich/dulwich/issues).
Supported versions of Python
----------------------------

At the moment, Dulwich supports (and is tested on) CPython 2.7, 3.3, 3.4, 3.5, 3.6 and Pypy.
At the moment, Dulwich supports (and is tested on) CPython 2.7, 3.4, 3.5, 3.6 and Pypy.
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
dulwich (0.19.8-1) unstable; urgency=medium

* New upstream release.

-- Jelmer Vernooij <[email protected]> Wed, 07 Nov 2018 01:52:52 +0000

dulwich (0.19.7-1) unstable; urgency=medium

* Run wrap-and-sort.
Expand Down
4 changes: 2 additions & 2 deletions dulwich.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: dulwich
Version: 0.19.7
Version: 0.19.8
Summary: Python Git Library
Home-page: https://www.dulwich.io/
Author: Jelmer Vernooij
Expand Down Expand Up @@ -102,7 +102,7 @@ Description: [![Build Status](https://travis-ci.org/dulwich/dulwich.png?branch=m
Supported versions of Python
----------------------------

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

Keywords: git vcs
Platform: UNKNOWN
Expand Down
2 changes: 1 addition & 1 deletion dulwich/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@

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

__version__ = (0, 19, 7)
__version__ = (0, 19, 8)
3 changes: 3 additions & 0 deletions dulwich/tests/test_refs.py
Original file line number Diff line number Diff line change
Expand Up @@ -506,6 +506,9 @@ def test_non_ascii(self):
self.assertEqual(expected_refs, self._repo.get_refs())

def test_cyrillic(self):
if sys.platform == 'win32':
raise SkipTest(
"filesystem encoding doesn't support arbitrary bytes")
# reported in https://github.com/dulwich/dulwich/issues/608
name = b'\xcd\xee\xe2\xe0\xff\xe2\xe5\xf2\xea\xe01'
encoded_ref = b'refs/heads/' + name
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@
else:
has_setuptools = True
from distutils.core import Distribution
import io
import os
import sys

dulwich_version_string = '0.19.7'
dulwich_version_string = '0.19.8'

include_dirs = []
# Windows MSVC support
Expand Down Expand Up @@ -83,7 +84,8 @@ def has_ext_modules(self):
setup_kwargs['test_suite'] = 'dulwich.tests.test_suite'
setup_kwargs['tests_require'] = tests_require

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

setup(name='dulwich',
Expand Down

0 comments on commit ef75de5

Please sign in to comment.