Skip to content

Commit

Permalink
Clarify GPL license: the project uses GPL-2.0-only
Browse files Browse the repository at this point in the history
  • Loading branch information
vstinner committed Mar 21, 2024
1 parent fe53fff commit fea5e36
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ trace processes) written in Python.
* `python-ptrace at the Python Cheeseshop (PyPI)
<https://pypi.python.org/pypi/python-ptrace>`_

python-ptrace is an opensource project written in Python under GNU GPLv2
python-ptrace is an opensource project written in Python under GNU GPL-2.0-only
license. It supports Python 3.6 and newer.
2 changes: 1 addition & 1 deletion cptrace/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PACKAGE = "cptrace"
VERSION = "0.6.1"
WEBSITE = "http://python-ptrace.readthedocs.io/"
LICENSE = "GNU GPL v2"
LICENSE = "GPL-2.0-only"
2 changes: 1 addition & 1 deletion doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ trace processes) written in Python.
* `python-ptrace at the Python Cheeseshop (PyPI)
<https://pypi.python.org/pypi/python-ptrace>`_

python-ptrace is an opensource project written in Python under GNU GPLv2
python-ptrace is an opensource project written in Python under GNU GPL-2.0-only
license. It supports Python 3.6 and newer.


Expand Down
2 changes: 1 addition & 1 deletion ptrace/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
VERSION = (0, 9, 10)
__version__ = '.'.join(map(str, VERSION))
WEBSITE = "http://python-ptrace.readthedocs.io/"
LICENSE = "GNU GPL v2"
LICENSE = "GPL-2.0-only"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
'Intended Audience :: Developers',
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License (GPL)',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: OS Independent',
'Natural Language :: English',
'Programming Language :: Python',
Expand Down
2 changes: 1 addition & 1 deletion setup_cptrace.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
'Intended Audience :: Developers',
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License (GPL)',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: OS Independent',
'Natural Language :: English',
'Programming Language :: C',
Expand Down

0 comments on commit fea5e36

Please sign in to comment.