Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

DM-22234: Remove unnecessary python_future dependency #63

Merged
merged 2 commits into from
Nov 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/lsst/ap/association/mapApData.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ def _convert_to_pandas(self, inputCatalog):
return catalog


class UnpackPpdbFlags(object):
class UnpackPpdbFlags:
"""Class for unpacking bits from integer flag fields stored in the Ppdb.

Attributes
Expand Down
3 changes: 1 addition & 2 deletions ups/ap_association.table
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# For each dependency except python, list it here along with its minimum
# version number.
# Very common third-party packages (boost, python, swig, doxygen)
# Very common third-party packages (boost, python, swig, doxygen)
# and very low-level LSST packages can be assumed to be recursively
# included by low-level LSST packages such as utils or daf_base.
# Any other package whose interface is used should be listed explicitly
Expand All @@ -14,7 +14,6 @@ setupRequired(verify)

setupRequired(numpy)
setupRequired(scipy)
setupRequired(python_future)

# The following is boilerplate for all packages.
# See Tech Note DMTN-001 for details on LSST_LIBRARY_PATH
Expand Down