Skip to content

Commit 486bc4d

Browse files
authored
Merge pull request #125 from iMichka/python2
setup and readme: update python versions and urls
2 parents aa85241 + afff337 commit 486bc4d

File tree

2 files changed

+11
-13
lines changed

2 files changed

+11
-13
lines changed

README.rst

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Install instructions can be found `here <http://pygccxml.readthedocs.io/en/maste
2727
Compatibility
2828
-------------
2929

30-
pygccxml is compatible with Python 2.7, 3.4, 3.5, pypy and pypy3.
30+
pygccxml is compatible with Python 3.5, 3.6, 3.7, 3.8 and pypy3.
3131

3232
Documentation and examples
3333
--------------------------
@@ -46,9 +46,11 @@ License
4646
Contact us
4747
----------
4848

49-
You can contact us through the `CastXML mailing list <http://public.kitware.com/mailman/listinfo/castxml/>`_.
49+
For issues with pygccxml you can open an issue `here <https://github.com/CastXML/pygccxml/issues/>`_.
50+
51+
For issues with CastXML you can open an issue `here <https://github.com/CastXML/CastXML>`_.
5052

51-
For issues with pygccxml you can open an issue `here <https://github.com/gccxml/pygccxml/issues/>`_.
53+
You can contact us through the `CastXML mailing list <http://public.kitware.com/mailman/listinfo/castxml/>`_.
5254

5355
Branches
5456
--------
@@ -60,13 +62,12 @@ The develop branch contains the latest improvements but can be unstable. Pull Re
6062
Testing and code coverage
6163
-------------------------
6264

63-
You can find the Mac and Linux builds `here <https://travis-ci.org/gccxml/pygccxml/builds>`_.
64-
The Windows builds are located `here <https://ci.appveyor.com/project/iMichka/pygccxml>`_.
65+
The builds are done using the Github Actions infrastructure.
6566

6667
Running the test suite is done with:
6768

6869
.. code-block::
6970
7071
python3 -m unittests.test_all
7172
72-
Code coverage is also available. It is automatically updated after each commit and can be found `here <https://coveralls.io/r/gccxml/pygccxml>`_.
73+
Code coverage is also available. It is automatically updated after each commit and can be found `here <https://codecov.io/gh/iMichka/pygccxml>`_.

setup.py

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
maintainer="Michka Popoff and the Insight Software Consortium",
1717
maintainer_email="[email protected]",
1818
description="Python package for easy C++ declarations navigation.",
19-
url="https://github.com/gccxml/pygccxml",
20-
download_url="https://github.com/gccxml/pygccxml/archive/v" +
19+
url="https://github.com/CastXML/pygccxml",
20+
download_url="https://github.com/CastXML/pygccxml/archive/v" +
2121
version + ".tar.gz",
2222
license="Boost",
2323
keywords="C++, declaration parser, CastXML, gccxml",
@@ -32,13 +32,10 @@
3232
"Operating System :: MacOS :: MacOS X",
3333
"Operating System :: Microsoft :: Windows",
3434
"Operating System :: POSIX",
35-
"Programming Language :: Python",
36-
"Programming Language :: Python :: 2",
37-
"Programming Language :: Python :: 2.7",
38-
"Programming Language :: Python :: 3",
39-
"Programming Language :: Python :: 3.4",
4035
"Programming Language :: Python :: 3.5",
4136
"Programming Language :: Python :: 3.6",
37+
"Programming Language :: Python :: 3.7",
38+
"Programming Language :: Python :: 3.8",
4239
"Programming Language :: Python :: Implementation :: CPython",
4340
"Programming Language :: Python :: Implementation :: PyPy",
4441
"Topic :: Software Development",

0 commit comments

Comments
 (0)