Skip to content

Commit f8bfac1

Browse files
committed
Switch to Python 3 as default, still support Python 2.7
1 parent fec16a0 commit f8bfac1

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ DESCRIPTION
4343
Installation
4444
============
4545

46-
All you need to run ssh-ident is a standard installation of python 2 (>= 2.6).
47-
Python 3 is supported, but newer versions may deprecate stuff and will fail.
46+
All you need to run ssh-ident is a standard installation of python 3 or 2.7.
47+
Newer versions of Python 3 may deprecate stuff and will fail.
4848

4949
If your system has wget and are impatient to use it, you can install
5050
ssh-ident with two simple commands:

ssh-ident

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
# vim: tabstop=2 shiftwidth=2 expandtab
3-
### shebang `/usr/bin/env python` due to Python Virtual Environment
4-
### if missing on Debian/Ubuntu use package python-is-python3, otherwise create symlink in /usr/local/bin or change shebang
3+
### shebang `/usr/bin/env python3` due to Python Virtual Environment
4+
### if using Python 2.7, then change shebang otherwise create symlink in /usr/local/bin or virtual environment
55
"""Start and use ssh-agent and load identities as necessary.
66
77
Use this script to start ssh-agents and load ssh keys on demand,
@@ -40,8 +40,8 @@ In any case, ssh-ident:
4040
Installation
4141
============
4242
43-
All you need to run ssh-ident is a standard installation of python 2 (>= 2.6).
44-
Python 3 is supported, but newer versions may deprecate stuff and will fail.
43+
All you need to run ssh-ident is a standard installation of python 3 or 2.7.
44+
Newer versions of Python 3 may deprecate stuff and will fail.
4545
4646
If your system has wget and are impatient to use it, you can install
4747
ssh-ident with two simple commands:

0 commit comments

Comments
 (0)