Skip to content

Commit

Permalink
change license to LGPLv3
Browse files Browse the repository at this point in the history
fixes #2
  • Loading branch information
malb committed Feb 9, 2016
1 parent 92fc60d commit 77334c0
Show file tree
Hide file tree
Showing 9 changed files with 182 additions and 347 deletions.
496 changes: 161 additions & 335 deletions LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion example/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
name="cysignals_example",
version='1.0',
ext_modules=extensions,
license='GNU General Public License, version 2 or later',
license='GNU Lesser General Public License, version 3 or later',
)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,6 @@ def get_data_files(self):
"cysignals-cython": ["__init__.pxd", "*.h"]},
scripts=glob(opj("src", "scripts", "*")),
cmdclass=dict(build_py=build_py_cython),
license='GNU General Public License, version 2 or later',
license='GNU Lesser General Public License, version 3 or later',
long_description=open('README.rst').read(),
)
4 changes: 2 additions & 2 deletions src/cysignals/alarm.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Fine-grained alarm function
#*****************************************************************************
# Copyright (C) 2013-2016 Jeroen Demeyer <[email protected]>
#
# Distributed under the terms of the GNU General Public License (GPL)
# as published by the Free Software Foundation; either version 2 of
# Distributed under the terms of the GNU Lesser General Public License (GPL)
# as published by the Free Software Foundation; either version 3 of
# the License, or (at your option) any later version.
# http://www.gnu.org/licenses/
#*****************************************************************************
Expand Down
4 changes: 2 additions & 2 deletions src/cysignals/implementation.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ Interrupt and signal handling for Cython
* 2006 Martin Albrecht <[email protected]>
* 2010-2015 Jeroen Demeyer <[email protected]>
*
* Distributed under the terms of the GNU General Public License (GPL)
* as published by the Free Software Foundation; either version 2 of
* Distributed under the terms of the GNU Lesser General Public License (GPL)
* as published by the Free Software Foundation; either version 3 of
* the License, or (at your option) any later version.
* http://www.gnu.org/licenses/
****************************************************************************/
Expand Down
4 changes: 2 additions & 2 deletions src/cysignals/macros.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ will never be handled and always causes Python to exit.
* 2006 Martin Albrecht <[email protected]>
* 2010-2015 Jeroen Demeyer <[email protected]>
*
* Distributed under the terms of the GNU General Public License (GPL)
* as published by the Free Software Foundation; either version 2 of
* Distributed under the terms of the GNU Lesser General Public License (LGPL)
* as published by the Free Software Foundation; either version 3 of
* the License, or (at your option) any later version.
* http://www.gnu.org/licenses/
****************************************************************************/
Expand Down
4 changes: 2 additions & 2 deletions src/cysignals/signals.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ AUTHORS:
#*****************************************************************************
# Copyright (C) 2011-2015 Jeroen Demeyer <[email protected]>
#
# Distributed under the terms of the GNU General Public License (GPL)
# as published by the Free Software Foundation; either version 2 of
# Distributed under the terms of the GNU Lesser General Public License (GPL)
# as published by the Free Software Foundation; either version 3 of
# the License, or (at your option) any later version.
# http://www.gnu.org/licenses/
#*****************************************************************************
Expand Down
4 changes: 2 additions & 2 deletions src/cysignals/tests.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ We disable crash logs for this test run::
#*****************************************************************************
# Copyright (C) 2010-2016 Jeroen Demeyer <[email protected]>
#
# Distributed under the terms of the GNU General Public License (GPL)
# as published by the Free Software Foundation; either version 2 of
# Distributed under the terms of the GNU Lesser General Public License (GPL)
# as published by the Free Software Foundation; either version 3 of
# the License, or (at your option) any later version.
# http://www.gnu.org/licenses/
#*****************************************************************************
Expand Down
9 changes: 9 additions & 0 deletions src/cysignals/tests_helper.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
* C functions for use in tests.pyx
*/

/*****************************************************************************
* Copyright (C) 2010-2016 Jeroen Demeyer <[email protected]>
*
* Distributed under the terms of the GNU Lesser General Public License (GPL)
* as published by the Free Software Foundation; either version 3 of
* the License, or (at your option) any later version.
* http://www.gnu.org/licenses/
****************************************************************************/

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
Expand Down

0 comments on commit 77334c0

Please sign in to comment.