Skip to content

Commit

Permalink
Drop support for python2
Browse files Browse the repository at this point in the history
  • Loading branch information
ktf committed May 21, 2024
1 parent ea085ad commit 2b9f292
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion aliBuild
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
from __future__ import print_function
import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion aliDeps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import sys
import os
from os.path import dirname, join, abspath
Expand Down
2 changes: 1 addition & 1 deletion aliDoctor
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import sys
import os
from os.path import dirname, join, abspath
Expand Down
2 changes: 1 addition & 1 deletion alibuild_helpers/analytics.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import os, subprocess, sys
from os.path import exists, expanduser
from os import unlink
Expand Down
2 changes: 1 addition & 1 deletion alibuild_helpers/deps.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

from __future__ import print_function
from alibuild_helpers.log import debug, error, info, dieOnError
Expand Down
2 changes: 1 addition & 1 deletion alibuild_helpers/doctor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import os, re, sys
from os.path import exists, abspath, expanduser
import logging
Expand Down
2 changes: 1 addition & 1 deletion alibuild_helpers/utilities.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import yaml
from os.path import exists
import hashlib
Expand Down
2 changes: 1 addition & 1 deletion pb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import sys
import os
from os.path import dirname, join, abspath
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
""" Package alibuild using setuptools
"""

Expand Down

0 comments on commit 2b9f292

Please sign in to comment.