Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Drop support for python2 #869

Merged
merged 1 commit into from
Sep 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions alibuild_helpers/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,8 @@
from alibuild_helpers.log import ProgressPrint, log_current_package
from glob import glob
from textwrap import dedent
try:
from collections import OrderedDict
except ImportError:
from ordereddict import OrderedDict
try:
from shlex import quote # Python 3.3+
except ImportError:
from pipes import quote # Python 2.7
from collections import OrderedDict
from shlex import quote # Python 3.3+

import concurrent.futures
import importlib
Expand Down
Loading