Skip to content

Commit c5452aa

Browse files
committed
Prepared release 0.3.2
It represents the latest state on github, which should be better than what's installed by default. [skip ci]
1 parent d3e5d9c commit c5452aa

File tree

7 files changed

+66
-39
lines changed

7 files changed

+66
-39
lines changed

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
*.py[co]
22
*.swp
33
*~
4+
/*.egg-info
45
/lib/GitPython.egg-info
56
cover/
67
.coverage

‎VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.2 RC1
1+
0.3.2

‎doc/source/changes.rst

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
Changelog
33
=========
44

5+
0.3.2
6+
=====
7+
8+
* Release of most recent version as non-RC build, just to allow pip to install the latest version right away.
9+
* Have a look at the milestones (https://github.com/gitpython-developers/GitPython/milestones) to see what's next.
10+
511
0.3.2 RC1
612
=========
713
* **git** command wrapper

‎etc/sublime-text/git-python.sublime-project

+32-32
Original file line numberDiff line numberDiff line change
@@ -35,37 +35,37 @@
3535
"gitdb/ext"
3636
]
3737
},
38-
// SMMAP
39-
////////
40-
{
41-
"follow_symlinks": true,
42-
"path": "../../git/ext/gitdb/gitdb/ext/smmap",
43-
"file_exclude_patterns" : [
44-
"*.sublime-workspace",
45-
".git",
46-
".noseids",
47-
".coverage"
48-
],
49-
"folder_exclude_patterns" : [
50-
".git",
51-
"cover",
52-
]
53-
},
54-
// ASYNC
55-
////////
56-
{
57-
"follow_symlinks": true,
58-
"path": "../../git/ext/gitdb/gitdb/ext/async",
59-
"file_exclude_patterns" : [
60-
"*.sublime-workspace",
61-
".git",
62-
".noseids",
63-
".coverage"
64-
],
65-
"folder_exclude_patterns" : [
66-
".git",
67-
"cover",
68-
]
69-
},
38+
// // SMMAP
39+
// ////////
40+
// {
41+
// "follow_symlinks": true,
42+
// "path": "../../git/ext/gitdb/gitdb/ext/smmap",
43+
// "file_exclude_patterns" : [
44+
// "*.sublime-workspace",
45+
// ".git",
46+
// ".noseids",
47+
// ".coverage"
48+
// ],
49+
// "folder_exclude_patterns" : [
50+
// ".git",
51+
// "cover",
52+
// ]
53+
// },
54+
// // ASYNC
55+
// ////////
56+
// {
57+
// "follow_symlinks": true,
58+
// "path": "../../git/ext/gitdb/gitdb/ext/async",
59+
// "file_exclude_patterns" : [
60+
// "*.sublime-workspace",
61+
// ".git",
62+
// ".noseids",
63+
// ".coverage"
64+
// ],
65+
// "folder_exclude_patterns" : [
66+
// ".git",
67+
// "cover",
68+
// ]
69+
// },
7070
]
7171
}

‎requirements.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
GitPython
2+
gitdb >= 0.6.0

‎setup.py

100644100755
+23-5
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ def _stamp_version(filename):
6161
else:
6262
print >> sys.stderr, "WARNING: Couldn't find version line in file %s" % filename
6363

64+
install_requires = ('gitdb >= 0.6.0',)
6465
setup(name = "GitPython",
6566
cmdclass={'build_py': build_py, 'sdist': sdist},
6667
version = VERSION,
@@ -73,18 +74,35 @@ def _stamp_version(filename):
7374
package_data = {'git.test' : ['fixtures/*']},
7475
package_dir = {'git':'git'},
7576
license = "BSD License",
76-
install_requires='gitdb >= 0.5.1',
77+
requires=('gitdb (>=0.6.0)', ),
78+
install_requires=install_requires,
79+
test_requirements = ('mock', 'nose') + install_requires,
7780
zip_safe=False,
7881
long_description = """\
7982
GitPython is a python library used to interact with Git repositories""",
80-
classifiers = [
83+
classifiers=[
84+
# Picked from
85+
# http://pypi.python.org/pypi?:action=list_classifiers
86+
#"Development Status :: 1 - Planning",
87+
#"Development Status :: 2 - Pre-Alpha",
88+
#"Development Status :: 3 - Alpha",
8189
"Development Status :: 4 - Beta",
90+
# "Development Status :: 5 - Production/Stable",
91+
#"Development Status :: 6 - Mature",
92+
#"Development Status :: 7 - Inactive",
93+
"Environment :: Console",
8294
"Intended Audience :: Developers",
8395
"License :: OSI Approved :: BSD License",
8496
"Operating System :: OS Independent",
97+
"Operating System :: POSIX",
98+
"Operating System :: Microsoft :: Windows",
99+
"Operating System :: MacOS :: MacOS X",
85100
"Programming Language :: Python",
86-
"Programming Language :: Python :: 2.5",
101+
"Programming Language :: Python :: 2",
87102
"Programming Language :: Python :: 2.6",
88-
"Topic :: Software Development :: Libraries :: Python Modules",
89-
]
103+
"Programming Language :: Python :: 2.7",
104+
# "Programming Language :: Python :: 3",
105+
# "Programming Language :: Python :: 3.3",
106+
# "Programming Language :: Python :: 3.4",
107+
]
90108
)

0 commit comments

Comments
 (0)