Skip to content

Commit 9949b17

Browse files
tomershafirTomer Shafir
andauthored
[utils] Migrate compare.py shebang to python3 (#260)
Many modern environments link `python` to Python 2 and `python3` to Python 3, so on those the script would be ran with Python 2. However, the script uses `pandas` and `scipy` which have long dropped support for Python 2. In addition, the code is effectively Python 3. Thus, its better to upgrade and explictly run the script using `python3`. Co-authored-by: Tomer Shafir <[email protected]>
1 parent f3710ea commit 9949b17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/compare.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
"""Tool to filter, organize, compare and display benchmarking results. Usefull
33
for smaller datasets. It works great with a few dozen runs it is not designed to
44
deal with hundreds.

0 commit comments

Comments
 (0)