You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While looking into various cases I noticed that tomb checks for python2. Which is EOL, deprecated, dead, whatever.
Either remove any reference or if it is really needed update it to python3.
Edit: Reason being cloakify. Not sure if it was really needed to check for python2 if there is a check on cloakify itself.
Regardless. Point being python2 is EOL. And distributions are dropping the support. I know that Arch and Fedora already removed it.
Occurence in the codebase:
$ rg python2 .
./doc/tomb.1
218:consequently \fIpython2\fR. This function does not support asymmetric
./extras/dismissed/qt/Makefile
6: python2 -3 tombqt/create.py
8: python2 -3 tombqt/open.py
./extras/dismissed/INSTALL.python
14:package python-qt4 in debian or ubuntu, python2-pyqt in archlinux. If you are
23:2. do `sudo python2 setup.py install'
28:2. do `python2 setup.py build_ui'
29:3. do `sudo python2 setup.py install'
./extras/install_cloakify.sh
7:python2 $PWD/extras/cloakify/cloakify.py $@" > /usr/bin/cloakify
9:python2 $PWD/extras/cloakify/decloakify.py $@" > /usr/bin/decloakify
./extras/test/Dockerfile
5:RUN apt-get install -y -q zsh cryptsetup gpg gawk libgcrypt20-dev steghide qrencode python python2.7 python3-pip python3-dev libssl-dev make gcc sudo gettext bsdmainutils file pinentry-curses xxd libsodium23 libsodium-dev doas
./extras/test/setup
55:command -v python2 > /dev/null && test_set_prereq PYTHON2
./tomb
1017: # Check for python2
1018: command -v python2 -V 1>/dev/null 2>/dev/null || PYTHON2=0
@heat-wave seems to have stopped any activity on github since to years now, really hope he is well and sound ❤️. Lets move forward with this update meanwhile
Old title: Remove python2 or update to python3
While looking into various cases I noticed that
tomb
checks forpython2
. Which is EOL, deprecated, dead, whatever.Either remove any reference or if it is really needed update it to
python3
.Edit: Reason being cloakify. Not sure if it was really needed to check for python2 if there is a check on cloakify itself.
Regardless. Point being python2 is EOL. And distributions are dropping the support. I know that Arch and Fedora already removed it.
Occurence in the codebase:
Edit: As it seems to be related to cloakify
The text was updated successfully, but these errors were encountered: