Skip to content

Commit c150211

Browse files
authored
Fix #491 minor projex changes and copyright owner fixup (#493)
1 parent c197e92 commit c150211

21 files changed

+21
-23
lines changed

pykern/package_data/projex/projex/projex_console.py.jinja

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ See :mod:`pykern.pkcli` for how this module is used.
44

55
{{ copyright_license_rst }}
66
"""
7+
78
import pykern.pkcli
89
import sys
910

pykern/pkarray.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
Not a complete wrapper. New routines added as required.
55
6-
:copyright: Copyright (c) 2015 Bivio Software, Inc. All Rights Reserved.
6+
:copyright: Copyright (c) 2015 RadiaSoft LLC. All Rights Reserved.
77
:license: http://www.apache.org/licenses/LICENSE-2.0.html
88
"""
99
from __future__ import absolute_import, division, print_function

pykern/pkcli/github.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""run github backups and restores
22
3-
:copyright: Copyright (c) 2013-2018 Bivio Software, Inc. All Rights Reserved.
3+
:copyright: Copyright (c) 2013-2018 RadiaSoft LLC. All Rights Reserved.
44
:license: http://www.apache.org/licenses/LICENSE-2.0.html
55
"""
66

pykern/pkcli/projex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Initialize Python project directories
22
3-
:copyright: Copyright (c) 2015 Bivio Software, Inc. All Rights Reserved.
3+
:copyright: Copyright (c) 2015 RadiaSoft LLC. All Rights Reserved.
44
:license: http://www.apache.org/licenses/LICENSE-2.0.html
55
"""
66

pykern/pkjinja.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
"""Simplify rendering jinja2
33
4-
:copyright: Copyright (c) 2015 Bivio Software, Inc. All Rights Reserved.
4+
:copyright: Copyright (c) 2015 RadiaSoft LLC. All Rights Reserved.
55
:license: http://www.apache.org/licenses/LICENSE-2.0.html
66
"""
77
from __future__ import absolute_import, division, print_function

pykern/pkplatform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""Wrapper for Python's :mod:`platform` to provide cleaner programmatic
33
control of system features.
44
5-
:copyright: Copyright (c) 2015 Bivio Software, Inc. All Rights Reserved.
5+
:copyright: Copyright (c) 2015 RadiaSoft LLC. All Rights Reserved.
66
:license: http://www.apache.org/licenses/LICENSE-2.0.html
77
"""
88
from __future__ import absolute_import, division, print_function

pykern/pkresource.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Where external resources are stored
22
3-
:copyright: Copyright (c) 2015 Bivio Software, Inc. All Rights Reserved.
3+
:copyright: Copyright (c) 2015 RadiaSoft LLC. All Rights Reserved.
44
:license: http://www.apache.org/licenses/LICENSE-2.0.html
55
"""
66

pykern/pykern_console.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
1-
# -*- coding: utf-8 -*-
21
"""Front-end command line for :mod:`pykern.pkcli`.
32
43
Example:
54
6-
:copyright: Copyright (c) 2015 Bivio Software, Inc. All Rights Reserved.
5+
:copyright: Copyright (c) 2015 RadiaSoft LLC. All Rights Reserved.
76
:license: http://www.apache.org/licenses/LICENSE-2.0.html
87
"""
9-
from __future__ import absolute_import, division, print_function
108

119
import sys
12-
1310
from pykern import pkcli
1411

1512

tests/pkarray_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
"""PyTest for :mod:`pykern.pkarray`
33
4-
:copyright: Copyright (c) 2015 Bivio Software, Inc. All Rights Reserved.
4+
:copyright: Copyright (c) 2015 RadiaSoft LLC. All Rights Reserved.
55
:license: http://www.apache.org/licenses/LICENSE-2.0.html
66
"""
77
import pytest

tests/pkcli/github_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""test github
22
3-
:copyright: Copyright (c) 2019 Bivio Software, Inc. All Rights Reserved.
3+
:copyright: Copyright (c) 2019 RadiaSoft LLC. All Rights Reserved.
44
:license: http://www.apache.org/licenses/LICENSE-2.0.html
55
"""
66

tests/pkcli_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""pytest for `pykern.pkcli`
22
3-
:copyright: Copyright (c) 2015-2023 Bivio Software, Inc. All Rights Reserved.
3+
:copyright: Copyright (c) 2015-2023 RadiaSoft LLC. All Rights Reserved.
44
:license: http://www.apache.org/licenses/LICENSE-2.0.html
55
"""
66

tests/pkcollections_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
"""pytest for :mod:`pykern.pkcollections`
33
4-
:copyright: Copyright (c) 2015 Bivio Software, Inc. All Rights Reserved.
4+
:copyright: Copyright (c) 2015 RadiaSoft LLC. All Rights Reserved.
55
:license: http://www.apache.org/licenses/LICENSE-2.0.html
66
"""
77
from __future__ import absolute_import, division, print_function

tests/pkcompat_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
"""test for :mod:`pykern.pkcompat`
33
4-
:copyright: Copyright (c) 2015 Bivio Software, Inc. All Rights Reserved.
4+
:copyright: Copyright (c) 2015 RadiaSoft LLC. All Rights Reserved.
55
:license: http://www.apache.org/licenses/LICENSE-2.0.html
66
"""
77
import locale

tests/pkconfig_data/p1/base_pkconfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
u"""Default config
33
4-
:copyright: Copyright (c) 2015 Bivio Software, Inc. All Rights Reserved.
4+
:copyright: Copyright (c) 2015 RadiaSoft LLC. All Rights Reserved.
55
:license: http://www.apache.org/licenses/LICENSE-2.0.html
66
"""
77
from __future__ import absolute_import, division, print_function

tests/pkinspect_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
"""PyTest for :mod:`pykern.pkinspect`
33
4-
:copyright: Copyright (c) 2015 Bivio Software, Inc. All Rights Reserved.
4+
:copyright: Copyright (c) 2015 RadiaSoft LLC. All Rights Reserved.
55
:license: http://www.apache.org/licenses/LICENSE-2.0.html
66
"""
77
from __future__ import absolute_import, division, print_function

tests/pkio_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""PyTest for :mod:`pykern.pkio`
22
3-
:copyright: Copyright (c) 2015 Bivio Software, Inc. All Rights Reserved.
3+
:copyright: Copyright (c) 2015 RadiaSoft LLC. All Rights Reserved.
44
:license: http://www.apache.org/licenses/LICENSE-2.0.html
55
"""
66

tests/pkjinja_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
"""pytest for `pykern.resource`
33
4-
:copyright: Copyright (c) 2015 Bivio Software, Inc. All Rights Reserved.
4+
:copyright: Copyright (c) 2015 RadiaSoft LLC. All Rights Reserved.
55
:license: http://www.apache.org/licenses/LICENSE-2.0.html
66
"""
77
from __future__ import absolute_import, division, print_function

tests/pkplatform_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
"""pytest for `pykern.pkplatform`
33
4-
:copyright: Copyright (c) 2015 Bivio Software, Inc. All Rights Reserved.
4+
:copyright: Copyright (c) 2015 RadiaSoft LLC. All Rights Reserved.
55
:license: http://www.apache.org/licenses/LICENSE-2.0.html
66
"""
77
from __future__ import absolute_import, division, print_function

tests/pkresource_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
"""pytest for `pykern.resource`
33
4-
:copyright: Copyright (c) 2015 Bivio Software, Inc. All Rights Reserved.
4+
:copyright: Copyright (c) 2015 RadiaSoft LLC. All Rights Reserved.
55
:license: http://www.apache.org/licenses/LICENSE-2.0.html
66
"""
77
from __future__ import absolute_import, division, print_function

tests/pkunit_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
"""PyTest for :mod:`pykern.pkunit`
33
4-
:copyright: Copyright (c) 2015 Bivio Software, Inc. All Rights Reserved.
4+
:copyright: Copyright (c) 2015 RadiaSoft LLC. All Rights Reserved.
55
:license: http://www.apache.org/licenses/LICENSE-2.0.html
66
"""
77
import pytest

tests/util_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""PyTest for :mod:`pykern.util`
22
3-
:copyright: Copyright (c) 2022 Bivio Software, Inc. All Rights Reserved.
3+
:copyright: Copyright (c) 2022 RadiaSoft LLC. All Rights Reserved.
44
:license: http://www.apache.org/licenses/LICENSE-2.0.html
55
"""
66

0 commit comments

Comments
 (0)