Details
-
Type:
Story
-
Status: Done
-
Resolution: Done
-
Fix Version/s: None
-
Component/s: ap_association, cat, ctrl_execute, ctrl_orca, ctrl_pool, daf_persistence, db, display_firefly, display_matplotlib, meas_modelfit, obs_base, obs_cfht, Qserv, sconsUtils, shapelet
-
Labels:None
-
Story Points:1.5
-
Sprint:Arch 2019-11-11, Arch 2019-11-18
-
Team:Architecture
Description
There are some packages in lsst_distrib that still use python future to support python 2.7. In some cases these are residual table file mentions or a handful of imports of past.builtins. Clean these up.
Attachments
Issue Links
- relates to
-
DM-22417 Remove python future from obs_base
- Done
Looking for:
from past.builtins import...
from future.utils import...
from future import...
from __future__ import...
also from builtins import is probably a porting crutch and we do not want to inherit from object.