@@ -4,6 +4,7 @@ include README.md
include Makefile
include COPYING
include HACKING
+include setup.cfg
include dulwich/stdint.h
recursive-include docs conf.py *.txt Makefile make.bat
recursive-include examples *.py
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: dulwich
-Version: 0.10.1
+Version: 0.10.1a
Summary: Python Git Library
Home-page: https://samba.org/~jelmer/dulwich
Author: Jelmer Vernooij
@@ -122,7 +122,7 @@ class RepositoryTests(TestCase):
self.assertEqual(k in r, contained)
for k, _ in test_keys:
- self.assertRaisesRegex(
+ self.assertRaisesRegexp(
TypeError, "'name' must be bytestring, not unicode",
r.__getitem__, unicode(k)
)
@@ -8,7 +8,7 @@ except ImportError:
from distutils.core import setup, Extension
from distutils.core import Distribution
-dulwich_version_string = '0.10.1'
+dulwich_version_string = '0.10.1a'
include_dirs = []
# Windows MSVC support