Skip to content

Commit 2f5e0a4

Browse files
committed
Use Apache 2.0 license everywhere
Confirmation from copyright holders is in #155
1 parent 5a00d2c commit 2f5e0a4

27 files changed

+45
-11
lines changed

cwl_utils/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
"""Python Utilities and Autogenerated Classes for loading and parsing CWL documents."""

cwl_utils/__meta__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
# SPDX-License-Identifier: Apache-2.0
12
"""Global version number for the cwl_utils package."""
23
__version__ = "0.16"

cwl_utils/cite_extract.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
# SPDX-License-Identifier: GPL-3.0-only
2+
# SPDX-License-Identifier: Apache-2.0
33
import argparse
44
import sys
55
from typing import Iterator, List, Union, cast

cwl_utils/docker_extract.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
# SPDX-License-Identifier: GPL-3.0-only
2+
# SPDX-License-Identifier: Apache-2.0
33
import argparse
44
import os
55
import sys

cwl_utils/errors.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
"""Common Exceptions."""
3+
4+
15
class ArrayMissingItems(BaseException):
26
"""From https://github.com/rabix/sbpack/blob/b8404a0859ffcbe1edae6d8f934e51847b003320/sbpack/lib.py"""
37

cwl_utils/expression.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
"""CWL Expression parsing."""
13
import asyncio
24
import copy
35
import inspect

cwl_utils/file_formats.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# SPDX-License-Identifier: Apache-2.0
12
"""
23
CWL file formats utilities.
34

cwl_utils/graph_split.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# SPDX-License-Identifier: GPL-3.0-only
2+
# SPDX-License-Identifier: Apache-2.0
33
# Copyright 2019-2020 Michael R. Crusoe
44
# Copyright 2020 Altair Wei
55
"""

cwl_utils/image_puller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: GPL-3.0-only
1+
# SPDX-License-Identifier: Apache-2.0
22
"""Classes for docker-extract."""
33
import logging
44
import os

cwl_utils/loghandler.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
"""Shared logging object."""
13
import logging
24

35
_logger = logging.getLogger("cwl_utils") # pylint: disable=invalid-name

0 commit comments

Comments
 (0)