launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #29179
[Merge] ~cjwatson/launchpad:remove-imp into launchpad:master
Colin Watson has proposed merging ~cjwatson/launchpad:remove-imp into launchpad:master.
Commit message:
Avoid deprecated imp module in setup.py
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~cjwatson/launchpad/+git/launchpad/+merge/429813
--
Your team Launchpad code reviewers is requested to review the proposed merge of ~cjwatson/launchpad:remove-imp into launchpad:master.
diff --git a/setup.py b/setup.py
index 435edce..1b046b0 100644
--- a/setup.py
+++ b/setup.py
@@ -3,10 +3,10 @@
# Copyright 2009, 2010 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
-import imp
import os.path
import sys
from distutils.sysconfig import get_python_lib
+from importlib.machinery import PathFinder
from string import Template
from textwrap import dedent
@@ -70,14 +70,10 @@ class lp_develop(develop):
for path in sys.path
if not path.startswith(env_top) and "pip-build-env-" not in path
]
- try:
- fp, orig_sitecustomize_path, _ = imp.find_module(
- "sitecustomize", system_paths
- )
- if fp:
- fp.close()
- except ImportError:
+ spec = PathFinder.find_spec("sitecustomize", path=system_paths)
+ if spec is None:
return ""
+ orig_sitecustomize_path = spec.origin
if orig_sitecustomize_path.endswith(".py"):
with open(orig_sitecustomize_path) as orig_sitecustomize_file:
orig_sitecustomize = orig_sitecustomize_file.read()