Skip to content

Commit 1a5a30d

Browse files
Adjust python shebangs to python3.9 and remove IBM copyrights
1 parent b951b06 commit 1a5a30d

File tree

11 files changed

+12
-26
lines changed

11 files changed

+12
-26
lines changed

src/makei/build.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
#!/usr/bin/env python39
1+
#!/usr/bin/env python3.9
22

3-
# Licensed Materials - Property of IBM
4-
# 57XX-XXX
5-
# (c) Copyright IBM Corp. 2021
63
""" The module used to build a project"""
74
import sys
85
from pathlib import Path

src/makei/cli/get_joblog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python39
1+
#!/usr/bin/env python3.9
22
# -*- coding: utf-8 -*-
33

44
import argparse

src/makei/cli/makei_entry.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
#!/usr/bin/env python39
1+
#!/usr/bin/env python3.9
22

3-
# Licensed Materials - Property of IBM
4-
# 57XX-XXX
5-
# (c) Copyright IBM Corp. 2021
63
""" The CLI entry for BOB"""
74

85
import argparse

src/makei/crtfrmstmf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python39
1+
#!/usr/bin/env python3.9
22
# -*- coding: utf-8 -*-
33
import argparse
44
import os

src/makei/cvtsrcpf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python39
1+
#!/usr/bin/env python3.9
22
# -*- coding: utf-8 -*-
33
import os
44
from pathlib import Path

src/makei/ibm_job.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python39
1+
#!/usr/bin/env python3.9
22
# -*- coding: utf-8 -*-
33

44
import json

src/makei/ibmi_json.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python39
1+
#!/usr/bin/env python3.9
22
# -*- coding: utf-8 -*-
33

44
import json

src/makei/init_project.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
1-
#!/usr/bin/env python39
1+
#!/usr/bin/env python3.9
22

3-
# Licensed Materials - Property of IBM
4-
# 57XX-XXX
5-
# (c) Copyright IBM Corp. 2021
6-
7-
"""This module is """
3+
"""This module is used to create an iproj.json """
84

95
import json
106
import re

src/makei/iproj_json.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python39
1+
#!/usr/bin/env python3.9
22
# -*- coding: utf-8 -*-
33

44
import json

src/makei/rules_mk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python39
1+
#!/usr/bin/env python3.9
22
# -*- coding: utf-8 -*-
33

44
import os

0 commit comments

Comments
 (0)