Skip to content

Commit 3c648f7

Browse files
authored
Merge pull request #1345 from moreati/oi-mate-wheres-your-loicense
Fix and formalise license metadata
2 parents 8f66aa5 + 01baec8 commit 3c648f7

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

docs/changelog.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ In progress (unreleased)
2323

2424
* :gh:issue:`1266` Import cleanups
2525
* :gh:issue:`1266` :mod:`ansible_mitogen`: De-duplicate sys.path manipulations
26+
* :gh:issue:`1344` Correct SPDX license declarations
27+
* :gh:issue:`1344` Declare BSD-3-Clause SPDX license in package metadata
2628

2729

2830
v0.3.29 (2025-09-18)

mitogen/imports/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SPDX-FileCopyrightText: 2025 Mitogen authors <https://github.com/mitogen-hq>
2-
# SPDX-License-Identifier: MIT
2+
# SPDX-License-Identifier: BSD-3-Clause
33
# !mitogen: minify_safe
44

55
import sys

mitogen/imports/_py2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SPDX-FileCopyrightText: 2025 Mitogen authors <https://github.com/mitogen-hq>
2-
# SPDX-License-Identifier: MIT
2+
# SPDX-License-Identifier: BSD-3-Clause
33
# !mitogen: minify_safe
44

55
import array

mitogen/imports/_py314.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SPDX-FileCopyrightText: 2025 Mitogen authors <https://github.com/mitogen-hq>
2-
# SPDX-License-Identifier: MIT
2+
# SPDX-License-Identifier: BSD-3-Clause
33
# !mitogen: minify_safe
44

55
import opcode

mitogen/imports/_py36.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SPDX-FileCopyrightText: 2025 Mitogen authors <https://github.com/mitogen-hq>
2-
# SPDX-License-Identifier: MIT
2+
# SPDX-License-Identifier: BSD-3-Clause
33
# !mitogen: minify_safe
44

55
import opcode

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def long_description():
7979
long_description = long_description(),
8080
long_description_content_type='text/markdown',
8181
author = 'David Wilson',
82-
license = 'New BSD',
82+
license = 'BSD-3-Clause',
8383
url = 'https://github.com/mitogen-hq/mitogen/',
8484
packages = find_packages(exclude=['tests', 'examples']),
8585
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*',
@@ -88,7 +88,6 @@ def long_description():
8888
'Environment :: Console',
8989
'Framework :: Ansible',
9090
'Intended Audience :: System Administrators',
91-
'License :: OSI Approved :: BSD License',
9291
'Operating System :: MacOS :: MacOS X',
9392
'Operating System :: POSIX',
9493
'Programming Language :: Python',

0 commit comments

Comments
 (0)