Release v0.16.0
Changes since v0.15.1: - Update to libgit2 v0.16.0 - Improve support for references - New method Index.read_tree - Rename Index.create_tree to Index.write_tree - Fix compilation error with MSVC (issue #53) - Fix a few segfaults (including issue #55)
This commit is contained in:
10
setup.py
10
setup.py
@@ -35,7 +35,6 @@ except ImportError:
|
|||||||
from distutils.core import setup, Extension, Command
|
from distutils.core import setup, Extension, Command
|
||||||
SETUPTOOLS = False
|
SETUPTOOLS = False
|
||||||
|
|
||||||
import sys
|
|
||||||
|
|
||||||
# Replace with your libgit2 configuration.
|
# Replace with your libgit2 configuration.
|
||||||
include_dirs = ['/usr/local/include']
|
include_dirs = ['/usr/local/include']
|
||||||
@@ -67,11 +66,18 @@ else:
|
|||||||
kwargs = {'cmdclass': {'test': TestCommand}}
|
kwargs = {'cmdclass': {'test': TestCommand}}
|
||||||
|
|
||||||
|
|
||||||
|
classifiers = [
|
||||||
|
"Development Status :: 3 - Alpha",
|
||||||
|
"Intended Audience :: Developers",
|
||||||
|
"Topic :: Software Development :: Version Control"]
|
||||||
|
|
||||||
|
|
||||||
setup(name='pygit2',
|
setup(name='pygit2',
|
||||||
description='Python bindings for libgit2.',
|
description='Python bindings for libgit2.',
|
||||||
keywords='git',
|
keywords='git',
|
||||||
version='0.15.0',
|
version='0.16.0',
|
||||||
url='http://github.com/libgit2/pygit2',
|
url='http://github.com/libgit2/pygit2',
|
||||||
|
classifiers=classifiers,
|
||||||
license='GPLv2',
|
license='GPLv2',
|
||||||
maintainer='J. David Ibáñez',
|
maintainer='J. David Ibáñez',
|
||||||
maintainer_email='jdavid.ibp@gmail.com',
|
maintainer_email='jdavid.ibp@gmail.com',
|
||||||
|
|||||||
Reference in New Issue
Block a user