Skip to content
This repository was archived by the owner on Apr 14, 2024. It is now read-only.

Commit cb4059b

Browse files
committed
Bumped version info to 0.5.3
1 parent 34f0139 commit cb4059b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

doc/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
# General information about the project.
4040
project = u'GitDB'
41-
copyright = u'2010, Sebastian Thiel'
41+
copyright = u'2011, Sebastian Thiel'
4242

4343
# The version info for the project you're documenting, acts as replacement for
4444
# |version| and |release|, also used in various other places throughout the
@@ -47,7 +47,7 @@
4747
# The short X.Y version.
4848
version = '0.5'
4949
# The full version, including alpha/beta/rc tags.
50-
release = '0.5.1'
50+
release = '0.5.3'
5151

5252
# The language for content autogenerated by Sphinx. Refer to documentation
5353
# for a list of supported languages.

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def get_data_files(self):
6969

7070
setup(cmdclass={'build_ext':build_ext_nofail},
7171
name = "gitdb",
72-
version = "0.5.2",
72+
version = "0.5.3",
7373
description = "Git Object Database",
7474
author = "Sebastian Thiel",
7575
author_email = "byronimo@gmail.com",
@@ -80,7 +80,7 @@ def get_data_files(self):
8080
ext_modules=[Extension('gitdb._perf', ['gitdb/_fun.c', 'gitdb/_delta_apply.c'], include_dirs=['gitdb'])],
8181
license = "BSD License",
8282
zip_safe=False,
83-
requires=('async (>=0.6.1)',),
84-
install_requires='async >= 0.6.1',
83+
requires=('async (>=0.6.1)', 'smmap (>=0.8.0)'),
84+
install_requires=('async >= 0.6.1', 'smmap >= 0.8.0'),
8585
long_description = """GitDB is a pure-Python git object database"""
8686
)

0 commit comments

Comments
 (0)