Skip to content

Commit

Permalink
Merge feature/347-python2. Closes #347
Browse files Browse the repository at this point in the history
  • Loading branch information
quicklizard99 committed Aug 17, 2016
2 parents a148858 + ed56fbd commit 98dd647
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ This is an overview of major changes. Refer to the git repository for a full log

Version 0.1.34
-------------
- #347 Explicitly reference python2 in scripts
- #342 Conda environment files
- #333 Ugly error message when opening or saving a file
- #330 libdmtx URL incorrect
Expand Down
2 changes: 1 addition & 1 deletion bin/plist.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2
"""Alter Inselect's existing plist file
"""

Expand Down
2 changes: 1 addition & 1 deletion inselect.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2
import sys

if sys.platform == 'win32' and hasattr(sys, 'frozen'):
Expand Down
2 changes: 1 addition & 1 deletion inselect/scripts/export_metadata.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2
"""Exports metadata
"""
from __future__ import print_function
Expand Down
2 changes: 1 addition & 1 deletion inselect/scripts/ingest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2
"""Ingests scanned images
"""
from __future__ import print_function
Expand Down
2 changes: 1 addition & 1 deletion inselect/scripts/read_barcodes.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2
"""Post-process
"""
from __future__ import print_function
Expand Down
2 changes: 1 addition & 1 deletion inselect/scripts/save_crops.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2
"""Saves cropped object images
"""
from __future__ import print_function
Expand Down
2 changes: 1 addition & 1 deletion inselect/scripts/segment.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2
"""Segment documents
"""
from __future__ import print_function
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 python2
import sys

import inselect
Expand Down

0 comments on commit 98dd647

Please sign in to comment.