Skip to content

Commit

Permalink
All files use python3 now
Browse files Browse the repository at this point in the history
Fixes #121
  • Loading branch information
JasonGross committed Mar 6, 2024
1 parent 6392e56 commit c254f3e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion coq_tools/absolutize_imports.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python2
#!/usr/bin/env python3
import shutil, os, os.path, sys
from .argparse_compat import argparse
from .import_util import get_file, sort_files_by_dependency, IMPORT_ABSOLUTIZE_TUPLE, ALL_ABSOLUTIZE_TUPLE
Expand Down
2 changes: 1 addition & 1 deletion coq_tools/minimize_requires.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python2
#!/usr/bin/env python3
import shutil, os, os.path, sys, re
from .argparse_compat import argparse
from .custom_arguments import add_libname_arguments, update_env_with_libnames, add_logging_arguments, process_logging_arguments, get_parser_name_mapping, LOG_ALWAYS, DEFAULT_VERBOSITY
Expand Down
2 changes: 1 addition & 1 deletion coq_tools/move_requires.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python2
#!/usr/bin/env python3
from __future__ import with_statement
import os, sys, shutil, re
from .argparse_compat import argparse
Expand Down
2 changes: 1 addition & 1 deletion coq_tools/move_vernaculars.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python2
#!/usr/bin/env python3
from __future__ import with_statement
import os, sys, shutil, re
from .argparse_compat import argparse
Expand Down

0 comments on commit c254f3e

Please sign in to comment.