Skip to content

Commit

Permalink
Adjust python shebangs to python3.9 and remove IBM copyrights
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundreinhardt committed Apr 18, 2024
1 parent b951b06 commit 1a5a30d
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 26 deletions.
5 changes: 1 addition & 4 deletions src/makei/build.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
#!/usr/bin/env python39
#!/usr/bin/env python3.9

# Licensed Materials - Property of IBM
# 57XX-XXX
# (c) Copyright IBM Corp. 2021
""" The module used to build a project"""
import sys
from pathlib import Path
Expand Down
2 changes: 1 addition & 1 deletion src/makei/cli/get_joblog.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python39
#!/usr/bin/env python3.9
# -*- coding: utf-8 -*-

import argparse
Expand Down
5 changes: 1 addition & 4 deletions src/makei/cli/makei_entry.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
#!/usr/bin/env python39
#!/usr/bin/env python3.9

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

import argparse
Expand Down
2 changes: 1 addition & 1 deletion src/makei/crtfrmstmf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python39
#!/usr/bin/env python3.9
# -*- coding: utf-8 -*-
import argparse
import os
Expand Down
2 changes: 1 addition & 1 deletion src/makei/cvtsrcpf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python39
#!/usr/bin/env python3.9
# -*- coding: utf-8 -*-
import os
from pathlib import Path
Expand Down
2 changes: 1 addition & 1 deletion src/makei/ibm_job.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python39
#!/usr/bin/env python3.9
# -*- coding: utf-8 -*-

import json
Expand Down
2 changes: 1 addition & 1 deletion src/makei/ibmi_json.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python39
#!/usr/bin/env python3.9
# -*- coding: utf-8 -*-

import json
Expand Down
8 changes: 2 additions & 6 deletions src/makei/init_project.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
#!/usr/bin/env python39
#!/usr/bin/env python3.9

# Licensed Materials - Property of IBM
# 57XX-XXX
# (c) Copyright IBM Corp. 2021

"""This module is """
"""This module is used to create an iproj.json """

import json
import re
Expand Down
2 changes: 1 addition & 1 deletion src/makei/iproj_json.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python39
#!/usr/bin/env python3.9
# -*- coding: utf-8 -*-

import json
Expand Down
2 changes: 1 addition & 1 deletion src/makei/rules_mk.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python39
#!/usr/bin/env python3.9
# -*- coding: utf-8 -*-

import os
Expand Down
6 changes: 1 addition & 5 deletions src/makei/utils.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
#!/usr/bin/env python39

# Licensed Materials - Property of IBM
# 57XX-XXX
# (c) Copyright IBM Corp. 2021
#!/usr/bin/env python3.9

""" The utility module"""

Expand Down

0 comments on commit 1a5a30d

Please sign in to comment.