Skip to content

Commit cb908d3

Browse files
committed
Merge branch 'hotfix/v1.6.2'
2 parents e0e3857 + 8f7107e commit cb908d3

File tree

6 files changed

+36
-38
lines changed

6 files changed

+36
-38
lines changed

docs/history/history.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ Thanks to all the people that have contributed patches, bug reports and suggesti
4343
* Alejandro Dubrovsky
4444
* Aron Xu
4545

46+
Version 1.6.2
47+
-------------
48+
49+
1. Use setuptools instead of distutils for the packaging
50+
51+
2. Change rights of declarations_cache.py and templates_tester.py
52+
from -rwxr-xr-x+ to -rw-r--r--+, so that all the files have the same
53+
execution rights.
54+
4655
Version 1.6.1
4756
-------------
4857

docs/pkg-info.txt

Lines changed: 0 additions & 27 deletions
This file was deleted.

pygccxml/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@
3333
# TODO:
3434
# 1. Add "explicit" property for constructors
3535

36-
__version__ = 'v1.6.1'
36+
__version__ = 'v1.6.2'

pygccxml/parser/declarations_cache.py

100755100644
File mode changed.

setup.py

Lines changed: 26 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,32 @@
44
# Distributed under the Boost Software License, Version 1.0.
55
# See http://www.boost.org/LICENSE_1_0.txt
66

7-
from distutils.core import setup
7+
from setuptools import setup
88

99
setup(name="pygccxml",
10-
version="v1.6.1",
11-
description="GCC-XML generated file reader",
12-
author="Insight Software Consortium.",
13-
author_email="[email protected]",
14-
packages=['pygccxml',
15-
'pygccxml.declarations',
16-
'pygccxml.parser',
17-
'pygccxml.binary_parsers',
18-
'pygccxml.utils']
10+
version="v1.6.2",
11+
author="Roman Yakovenko",
12+
author_email="roman yakovenko at gmail com",
13+
maintainer="Michka Popoff and the Insight Software Consortium",
14+
maintainer_email="[email protected]",
15+
description="Python package for easy C++ declarations navigation.",
16+
url="https://github.com/gccxml/pygccxml",
17+
download_url="https://github.com/gccxml/pygccxml/archive/master.zip",
18+
license="Boost",
19+
keywords="C++, declaration parser, gccxml",
20+
packages=["pygccxml",
21+
"pygccxml.declarations",
22+
"pygccxml.parser",
23+
"pygccxml.binary_parsers",
24+
"pygccxml.utils"],
25+
classifiers=[
26+
"Development Status :: 5 - Production/Stable",
27+
"Environment :: Console",
28+
"Intended Audience :: Developers",
29+
"Operating System :: MacOS :: MacOS X",
30+
"Operating System :: Microsoft :: Windows",
31+
"Operating System :: POSIX",
32+
"Programming Language :: Python",
33+
"Topic :: Software Development",
34+
],
1935
)

unittests/templates_tester.py

100755100644
File mode changed.

0 commit comments

Comments
 (0)