Git Product home page Git Product logo

Comments (9)

aphearin avatar aphearin commented on July 17, 2024

Hmmm, yes, thanks for calling this to my attention. It looks like this might be an unintended consequence of the nice PR @EiffL made while setting up a build wheel. That'll need to get fixed before the v0.8 release.

from halotools.

aphearin avatar aphearin commented on July 17, 2024

For the time being, can you still install by building the source?

from halotools.

lgarrison avatar lgarrison commented on July 17, 2024

I was actually able to get it to install by forcibly downgrading setuptools to setuptools<58 😆. I tried python setup.py install from source, but it gives the same error unless setuptools is downgraded.

from halotools.

lgarrison avatar lgarrison commented on July 17, 2024

By the way, this is probably a separate issue, but installing halotools gives a very verbose error if the environment doesn't already have numpy in it. It seems to install anyway with a non-wheel compilation, but it spits out a deprecation warning (at the end of the output below). Maybe some kind of install_requires flag is needed in setup.py?

(halotoolstest) lgarrison@worker5145:/$ pip install halotools
Collecting halotools
  Using cached halotools-0.7.tar.gz (7.6 MB)
Collecting astropy>=1
  Downloading astropy-4.3.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (10.8 MB)
     |████████████████████████████████| 10.8 MB 15.2 MB/s 
Collecting scipy
  Downloading scipy-1.7.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (28.5 MB)
     |████████████████████████████████| 28.5 MB 151.9 MB/s 
Collecting beautifulsoup4
  Downloading beautifulsoup4-4.10.0-py3-none-any.whl (97 kB)
     |████████████████████████████████| 97 kB 68.5 MB/s 
Collecting requests
  Downloading requests-2.26.0-py2.py3-none-any.whl (62 kB)
     |████████████████████████████████| 62 kB 12.7 MB/s 
Collecting numpy>=1.17
  Using cached numpy-1.21.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (15.8 MB)
Collecting pyerfa>=1.7.3
  Downloading pyerfa-2.0.0-cp39-cp39-manylinux2010_x86_64.whl (742 kB)
     |████████████████████████████████| 742 kB 163.7 MB/s 
Collecting soupsieve>1.2
  Downloading soupsieve-2.2.1-py3-none-any.whl (33 kB)
Collecting idna<4,>=2.5
  Downloading idna-3.2-py3-none-any.whl (59 kB)
     |████████████████████████████████| 59 kB 67.1 MB/s 
Collecting charset-normalizer~=2.0.0
  Downloading charset_normalizer-2.0.6-py3-none-any.whl (37 kB)
Collecting urllib3<1.27,>=1.21.1
  Downloading urllib3-1.26.7-py2.py3-none-any.whl (138 kB)
     |████████████████████████████████| 138 kB 166.1 MB/s 
Collecting certifi>=2017.4.17
  Downloading certifi-2021.5.30-py2.py3-none-any.whl (145 kB)
     |████████████████████████████████| 145 kB 106.7 MB/s 
Building wheels for collected packages: halotools
  Building wheel for halotools (setup.py) ... error
  ERROR: Command errored out with exit status 1:
   command: /mnt/home/lgarrison/miniconda3/envs/halotoolstest/bin/python3.9 -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-1rk9qkn1/halotools_64462846c6914f6da18cc1bf723003b8/setup.py'"'"'; __file__='"'"'/tmp/pip-install-1rk9qkn1/halotools_64462846c6914f6da18cc1bf723003b8/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d /tmp/pip-wheel-0h_9edkk
       cwd: /tmp/pip-install-1rk9qkn1/halotools_64462846c6914f6da18cc1bf723003b8/
  Complete output (571 lines):
  running bdist_wheel
  running build
  running build_py
  creating build
  creating build/lib.linux-x86_64-3.9
  creating build/lib.linux-x86_64-3.9/halotools
  copying halotools/__init__.py -> build/lib.linux-x86_64-3.9/halotools
  copying halotools/_astropy_init.py -> build/lib.linux-x86_64-3.9/halotools
  copying halotools/conftest.py -> build/lib.linux-x86_64-3.9/halotools
  copying halotools/custom_exceptions.py -> build/lib.linux-x86_64-3.9/halotools
  copying halotools/cython_version.py -> build/lib.linux-x86_64-3.9/halotools
  copying halotools/version.py -> build/lib.linux-x86_64-3.9/halotools
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models
  copying halotools/empirical_models/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models
  copying halotools/empirical_models/model_defaults.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models
  copying halotools/empirical_models/model_helpers.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models
  creating build/lib.linux-x86_64-3.9/halotools/extern
  copying halotools/extern/__init__.py -> build/lib.linux-x86_64-3.9/halotools/extern
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables
  copying halotools/mock_observables/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables
  copying halotools/mock_observables/catalog_analysis_helpers.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables
  copying halotools/mock_observables/mock_observables_helpers.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables
  copying halotools/mock_observables/mock_survey.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables
  copying halotools/mock_observables/occupation_stats.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables
  creating build/lib.linux-x86_64-3.9/halotools/sim_manager
  copying halotools/sim_manager/__init__.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager
  copying halotools/sim_manager/cached_halo_catalog.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager
  copying halotools/sim_manager/download_manager.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager
  copying halotools/sim_manager/fake_sim.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager
  copying halotools/sim_manager/halo_table_cache.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager
  copying halotools/sim_manager/halo_table_cache_log_entry.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager
  copying halotools/sim_manager/ptcl_table_cache.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager
  copying halotools/sim_manager/ptcl_table_cache_log_entry.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager
  copying halotools/sim_manager/rockstar_hlist_reader.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager
  copying halotools/sim_manager/setup_package.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager
  copying halotools/sim_manager/sim_defaults.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager
  copying halotools/sim_manager/supported_sims.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager
  copying halotools/sim_manager/tabular_ascii_reader.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager
  copying halotools/sim_manager/user_supplied_halo_catalog.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager
  copying halotools/sim_manager/user_supplied_ptcl_catalog.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager
  creating build/lib.linux-x86_64-3.9/halotools/tests
  copying halotools/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/tests
  copying halotools/tests/ddc.py -> build/lib.linux-x86_64-3.9/halotools/tests
  copying halotools/tests/setup_package.py -> build/lib.linux-x86_64-3.9/halotools/tests
  copying halotools/tests/test_amurrica.py -> build/lib.linux-x86_64-3.9/halotools/tests
  copying halotools/tests/test_seed.py -> build/lib.linux-x86_64-3.9/halotools/tests
  copying halotools/tests/test_subpkg_imports.py -> build/lib.linux-x86_64-3.9/halotools/tests
  copying halotools/tests/usa.py -> build/lib.linux-x86_64-3.9/halotools/tests
  creating build/lib.linux-x86_64-3.9/halotools/utils
  copying halotools/utils/__init__.py -> build/lib.linux-x86_64-3.9/halotools/utils
  copying halotools/utils/array_indexing_manipulations.py -> build/lib.linux-x86_64-3.9/halotools/utils
  copying halotools/utils/array_utils.py -> build/lib.linux-x86_64-3.9/halotools/utils
  copying halotools/utils/autosummary_workaround.py -> build/lib.linux-x86_64-3.9/halotools/utils
  copying halotools/utils/conditional_percentile.py -> build/lib.linux-x86_64-3.9/halotools/utils
  copying halotools/utils/crossmatch.py -> build/lib.linux-x86_64-3.9/halotools/utils
  copying halotools/utils/distribution_matching.py -> build/lib.linux-x86_64-3.9/halotools/utils
  copying halotools/utils/group_member_generator.py -> build/lib.linux-x86_64-3.9/halotools/utils
  copying halotools/utils/inverse_transformation_sampling.py -> build/lib.linux-x86_64-3.9/halotools/utils
  copying halotools/utils/io_utils.py -> build/lib.linux-x86_64-3.9/halotools/utils
  copying halotools/utils/load_umachine_binaries.py -> build/lib.linux-x86_64-3.9/halotools/utils
  copying halotools/utils/probabilistic_binning.py -> build/lib.linux-x86_64-3.9/halotools/utils
  copying halotools/utils/python_string_comparisons.py -> build/lib.linux-x86_64-3.9/halotools/utils
  copying halotools/utils/spherical_geometry.py -> build/lib.linux-x86_64-3.9/halotools/utils
  copying halotools/utils/table_utils.py -> build/lib.linux-x86_64-3.9/halotools/utils
  copying halotools/utils/value_added_halo_table_functions.py -> build/lib.linux-x86_64-3.9/halotools/utils
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch
  copying halotools/empirical_models/abunmatch/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch
  copying halotools/empirical_models/abunmatch/bin_free_cam.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch
  copying halotools/empirical_models/abunmatch/conditional_abunmatch_bin_based.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch
  copying halotools/empirical_models/abunmatch/noisy_percentile.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/assembias_models
  copying halotools/empirical_models/assembias_models/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/assembias_models
  copying halotools/empirical_models/assembias_models/heaviside_assembias.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/assembias_models
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates
  copying halotools/empirical_models/component_model_templates/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates
  copying halotools/empirical_models/component_model_templates/binary_galprop_models.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates
  copying halotools/empirical_models/component_model_templates/prim_galprop_model.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates
  copying halotools/empirical_models/component_model_templates/scatter_models.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models
  copying halotools/empirical_models/composite_models/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/factories
  copying halotools/empirical_models/factories/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/factories
  copying halotools/empirical_models/factories/hod_mock_factory.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/factories
  copying halotools/empirical_models/factories/hod_model_factory.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/factories
  copying halotools/empirical_models/factories/mock_factory_template.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/factories
  copying halotools/empirical_models/factories/mock_helpers.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/factories
  copying halotools/empirical_models/factories/model_factory_template.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/factories
  copying halotools/empirical_models/factories/prebuilt_model_factory.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/factories
  copying halotools/empirical_models/factories/subhalo_mock_factory.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/factories
  copying halotools/empirical_models/factories/subhalo_model_factory.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/factories
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models
  copying halotools/empirical_models/occupation_models/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models
  copying halotools/empirical_models/occupation_models/cacciato09_components.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models
  copying halotools/empirical_models/occupation_models/leauthaud11_components.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models
  copying halotools/empirical_models/occupation_models/occupation_model_template.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models
  copying halotools/empirical_models/occupation_models/tinker13_components.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models
  copying halotools/empirical_models/occupation_models/zheng07_components.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models
  copying halotools/empirical_models/occupation_models/zu_mandelbaum15_components.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models
  copying halotools/empirical_models/phase_space_models/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/sfr_models
  copying halotools/empirical_models/sfr_models/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/sfr_models
  copying halotools/empirical_models/sfr_models/halo_mass_quenching.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/sfr_models
  copying halotools/empirical_models/sfr_models/zu_mandelbaum16.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/sfr_models
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models
  copying halotools/empirical_models/smhm_models/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models
  copying halotools/empirical_models/smhm_models/behroozi10.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models
  copying halotools/empirical_models/smhm_models/moster13.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models
  copying halotools/empirical_models/smhm_models/smhm_helpers.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models
  copying halotools/empirical_models/smhm_models/zu_mandelbaum15.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/tests
  copying halotools/empirical_models/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/tests
  copying halotools/empirical_models/tests/test_model_helpers.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/tests
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/engines
  copying halotools/empirical_models/abunmatch/engines/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/engines
  copying halotools/empirical_models/abunmatch/engines/setup_package.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/engines
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/tests
  copying halotools/empirical_models/abunmatch/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/tests
  copying halotools/empirical_models/abunmatch/tests/naive_python_cam.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/tests
  copying halotools/empirical_models/abunmatch/tests/test_bin_free_cam.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/tests
  copying halotools/empirical_models/abunmatch/tests/test_conditional_abunmatch.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/tests
  copying halotools/empirical_models/abunmatch/tests/test_noisy_percentile.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/tests
  copying halotools/empirical_models/abunmatch/tests/test_pure_python.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/tests
  copying halotools/empirical_models/abunmatch/tests/test_sample2_window_function.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/tests
  copying halotools/empirical_models/abunmatch/tests/test_single_unit.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/tests
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/assembias_models/tests
  copying halotools/empirical_models/assembias_models/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/assembias_models/tests
  copying halotools/empirical_models/assembias_models/tests/test_assembias.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/assembias_models/tests
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates/tests
  copying halotools/empirical_models/component_model_templates/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates/tests
  copying halotools/empirical_models/component_model_templates/tests/test_binary_galprop_models.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates/tests
  copying halotools/empirical_models/component_model_templates/tests/test_prim_galprop_model.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates/tests
  copying halotools/empirical_models/component_model_templates/tests/test_scatter_models.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates/tests
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models
  copying halotools/empirical_models/composite_models/hod_models/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models
  copying halotools/empirical_models/composite_models/hod_models/cacciato09.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models
  copying halotools/empirical_models/composite_models/hod_models/hearin15.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models
  copying halotools/empirical_models/composite_models/hod_models/leauthaud11.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models
  copying halotools/empirical_models/composite_models/hod_models/tinker13.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models
  copying halotools/empirical_models/composite_models/hod_models/zheng07.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models
  copying halotools/empirical_models/composite_models/hod_models/zu_mandelbaum15.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models
  copying halotools/empirical_models/composite_models/hod_models/zu_mandelbaum16.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/sfr_models
  copying halotools/empirical_models/composite_models/sfr_models/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/sfr_models
  copying halotools/empirical_models/composite_models/sfr_models/smhm_binary_sfr.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/sfr_models
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/smhm_models
  copying halotools/empirical_models/composite_models/smhm_models/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/smhm_models
  copying halotools/empirical_models/composite_models/smhm_models/behroozi10.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/smhm_models
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/tests
  copying halotools/empirical_models/composite_models/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/tests
  copying halotools/empirical_models/composite_models/tests/test_preloaded_models.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/tests
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/tests
  copying halotools/empirical_models/composite_models/hod_models/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/tests
  copying halotools/empirical_models/composite_models/hod_models/tests/test_tinker13.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/tests
  copying halotools/empirical_models/composite_models/hod_models/tests/test_zheng07.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/tests
  copying halotools/empirical_models/composite_models/hod_models/tests/test_zu_mandelbaum16.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/tests
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests
  copying halotools/empirical_models/factories/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests
  copying halotools/empirical_models/factories/tests/test_clf_support.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests
  copying halotools/empirical_models/factories/tests/test_hod_factory.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests
  copying halotools/empirical_models/factories/tests/test_hod_mock_factory.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests
  copying halotools/empirical_models/factories/tests/test_hod_model_factory.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests
  copying halotools/empirical_models/factories/tests/test_mock_helpers.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests
  copying halotools/empirical_models/factories/tests/test_prebuilt_hod_model_factory.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests
  copying halotools/empirical_models/factories/tests/test_prebuilt_subhalo_model_factory.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests
  copying halotools/empirical_models/factories/tests/test_subhalo_model_factory.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/engines
  copying halotools/empirical_models/occupation_models/engines/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/engines
  copying halotools/empirical_models/occupation_models/engines/setup_package.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/engines
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tests
  copying halotools/empirical_models/occupation_models/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tests
  copying halotools/empirical_models/occupation_models/tests/test_cacciato09_clf.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tests
  copying halotools/empirical_models/occupation_models/tests/test_leauthaud11_hod.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tests
  copying halotools/empirical_models/occupation_models/tests/test_occupation_component.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tests
  copying halotools/empirical_models/occupation_models/tests/test_tinker13.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tests
  copying halotools/empirical_models/occupation_models/tests/test_zheng07_centrals.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tests
  copying halotools/empirical_models/occupation_models/tests/test_zheng07_satellites.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tests
  copying halotools/empirical_models/occupation_models/tests/test_zu_mandelbaum15_components.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tests
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models
  copying halotools/empirical_models/phase_space_models/analytic_models/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models
  copying halotools/empirical_models/phase_space_models/analytic_models/halo_boundary_functions.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models
  copying halotools/empirical_models/phase_space_models/analytic_models/monte_carlo_helpers.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models
  copying halotools/empirical_models/phase_space_models/analytic_models/profile_model_template.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/subhalo_based_models
  copying halotools/empirical_models/phase_space_models/subhalo_based_models/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/subhalo_based_models
  copying halotools/empirical_models/phase_space_models/subhalo_based_models/subhalo_phase_space.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/subhalo_based_models
  copying halotools/empirical_models/phase_space_models/subhalo_based_models/subhalo_selection_kernel.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/subhalo_based_models
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/centrals
  copying halotools/empirical_models/phase_space_models/analytic_models/centrals/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/centrals
  copying halotools/empirical_models/phase_space_models/analytic_models/centrals/trivial_phase_space.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/centrals
  copying halotools/empirical_models/phase_space_models/analytic_models/centrals/trivial_profile.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/centrals
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/tests
  copying halotools/empirical_models/phase_space_models/analytic_models/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/tests
  copying halotools/empirical_models/phase_space_models/analytic_models/tests/test_halo_boundary_functions.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/tests
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/centrals/tests
  copying halotools/empirical_models/phase_space_models/analytic_models/centrals/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/centrals/tests
  copying halotools/empirical_models/phase_space_models/analytic_models/centrals/tests/test_trivial_phase_space.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/centrals/tests
  copying halotools/empirical_models/phase_space_models/analytic_models/centrals/tests/test_trivial_profile.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/centrals/tests
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/biased_nfw_phase_space.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/nfw_phase_space.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/nfw_profile.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/sfr_biased_nfw_phase_space.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/conc_mass
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/conc_mass/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/conc_mass
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/conc_mass/direct_from_halo_catalog.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/conc_mass
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/conc_mass/dutton_maccio14.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/conc_mass
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/biased_isotropic_velocity.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/mass_profile.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/mc_generate_nfw_radial_positions.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/unbiased_isotropic_velocity.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/conc_mass/tests
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/conc_mass/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/conc_mass/tests
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/conc_mass/tests/test_conc_mass.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/conc_mass/tests
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests/setup_package.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests/test_biased_isotropic_velocity.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests/test_mc_generate_nfw_radial_positions.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests/test_unbiased_isotropic_velocity.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw/test_biased_nfw_consistency.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw/test_biased_nfw_consistency_mockpop.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw/test_biased_nfw_initialization.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw/test_biased_nfw_phase_space.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw/test_biased_nfw_phase_space_argument_handling.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw/test_conc_gal_bias_behavior.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw/test_mockpop.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_conc_mass_inheritance
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_conc_mass_inheritance/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_conc_mass_inheritance
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_conc_mass_inheritance/test_direct_from_halo_catalog.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_conc_mass_inheritance
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_phase_space
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_phase_space/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_phase_space
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_phase_space/test_nfw_phase_space.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_phase_space
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_phase_space/test_nfw_phase_space_argument_handling.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_phase_space
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_phase_space/test_nfw_phase_space_functions.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_phase_space
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_phase_space/test_nfw_phase_space_initialization.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_phase_space
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_phase_space/test_nfw_phase_space_monte_carlo.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_phase_space
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_profile
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_profile/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_profile
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_profile/test_colossus_consistency.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_profile
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_profile/test_nfw_profile.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_profile
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/subhalo_based_models/tests
  copying halotools/empirical_models/phase_space_models/subhalo_based_models/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/subhalo_based_models/tests
  copying halotools/empirical_models/phase_space_models/subhalo_based_models/tests/test_composite_model.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/subhalo_based_models/tests
  copying halotools/empirical_models/phase_space_models/subhalo_based_models/tests/test_subhalo_phase_space.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/subhalo_based_models/tests
  copying halotools/empirical_models/phase_space_models/subhalo_based_models/tests/test_subhalo_selection_kernel.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/subhalo_based_models/tests
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/sfr_models/tests
  copying halotools/empirical_models/sfr_models/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/sfr_models/tests
  copying halotools/empirical_models/sfr_models/tests/test_halo_mass_quenching.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/sfr_models/tests
  copying halotools/empirical_models/sfr_models/tests/test_zu_mandelbaum16.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/sfr_models/tests
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/tests
  copying halotools/empirical_models/smhm_models/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/tests
  copying halotools/empirical_models/smhm_models/tests/test_behroozi10.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/tests
  copying halotools/empirical_models/smhm_models/tests/test_moster13.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/tests
  copying halotools/empirical_models/smhm_models/tests/test_redshift_defensiveness.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/tests
  copying halotools/empirical_models/smhm_models/tests/test_zu_mandelbaum15.py -> build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/tests
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/counts_in_cells
  copying halotools/mock_observables/counts_in_cells/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/counts_in_cells
  copying halotools/mock_observables/counts_in_cells/counts_in_cylinders.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/counts_in_cells
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/group_identification
  copying halotools/mock_observables/group_identification/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/group_identification
  copying halotools/mock_observables/group_identification/fof_groups.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/group_identification
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions
  copying halotools/mock_observables/isolation_functions/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions
  copying halotools/mock_observables/isolation_functions/conditional_cylindrical_isolation.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions
  copying halotools/mock_observables/isolation_functions/conditional_spherical_isolation.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions
  copying halotools/mock_observables/isolation_functions/cylindrical_isolation.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions
  copying halotools/mock_observables/isolation_functions/isolation_functions_helpers.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions
  copying halotools/mock_observables/isolation_functions/spherical_isolation.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/large_scale_density
  copying halotools/mock_observables/large_scale_density/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/large_scale_density
  copying halotools/mock_observables/large_scale_density/large_scale_density_spherical_annulus.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/large_scale_density
  copying halotools/mock_observables/large_scale_density/large_scale_density_spherical_volume.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/large_scale_density
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters
  copying halotools/mock_observables/pair_counters/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters
  copying halotools/mock_observables/pair_counters/marked_npairs_3d.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters
  copying halotools/mock_observables/pair_counters/marked_npairs_xy_z.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters
  copying halotools/mock_observables/pair_counters/mesh_helpers.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters
  copying halotools/mock_observables/pair_counters/npairs_3d.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters
  copying halotools/mock_observables/pair_counters/npairs_jackknife_3d.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters
  copying halotools/mock_observables/pair_counters/npairs_jackknife_xy_z.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters
  copying halotools/mock_observables/pair_counters/npairs_per_object_3d.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters
  copying halotools/mock_observables/pair_counters/npairs_projected.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters
  copying halotools/mock_observables/pair_counters/npairs_s_mu.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters
  copying halotools/mock_observables/pair_counters/npairs_xy_z.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters
  copying halotools/mock_observables/pair_counters/pairs.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters
  copying halotools/mock_observables/pair_counters/pairwise_distance_3d.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters
  copying halotools/mock_observables/pair_counters/pairwise_distance_xy_z.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters
  copying halotools/mock_observables/pair_counters/rectangular_mesh.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters
  copying halotools/mock_observables/pair_counters/rectangular_mesh_2d.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters
  copying halotools/mock_observables/pair_counters/weighted_npairs_s_mu.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities
  copying halotools/mock_observables/pairwise_velocities/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities
  copying halotools/mock_observables/pairwise_velocities/los_pvd_vs_rp.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities
  copying halotools/mock_observables/pairwise_velocities/mean_los_velocity_vs_rp.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities
  copying halotools/mock_observables/pairwise_velocities/mean_radial_velocity_vs_r.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities
  copying halotools/mock_observables/pairwise_velocities/pairwise_velocities_helpers.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities
  copying halotools/mock_observables/pairwise_velocities/radial_pvd_vs_r.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities
  copying halotools/mock_observables/pairwise_velocities/velocity_marked_npairs_3d.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities
  copying halotools/mock_observables/pairwise_velocities/velocity_marked_npairs_xy_z.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/radial_profiles
  copying halotools/mock_observables/radial_profiles/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/radial_profiles
  copying halotools/mock_observables/radial_profiles/radial_profile_3d.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/radial_profiles
  copying halotools/mock_observables/radial_profiles/radial_profiles_helpers.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/radial_profiles
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density
  copying halotools/mock_observables/surface_density/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density
  copying halotools/mock_observables/surface_density/mass_in_cylinders.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density
  copying halotools/mock_observables/surface_density/mean_delta_sigma.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density
  copying halotools/mock_observables/surface_density/surface_density.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density
  copying halotools/mock_observables/surface_density/surface_density_helpers.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density
  copying halotools/mock_observables/surface_density/weighted_npairs_per_object_xy.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density
  copying halotools/mock_observables/surface_density/weighted_npairs_xy.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations
  copying halotools/mock_observables/tensor_calculations/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations
  copying halotools/mock_observables/tensor_calculations/inertia_tensor.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations
  copying halotools/mock_observables/tensor_calculations/tensor_derived_quantities.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/tests
  copying halotools/mock_observables/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/tests
  copying halotools/mock_observables/tests/cf_helpers.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/tests
  copying halotools/mock_observables/tests/test_catalog_analysis_helpers.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/tests
  copying halotools/mock_observables/tests/test_mock_observables_helpers.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/tests
  copying halotools/mock_observables/tests/test_mock_survey.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/tests
  copying halotools/mock_observables/tests/test_occupation_stats.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/tests
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering
  copying halotools/mock_observables/two_point_clustering/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering
  copying halotools/mock_observables/two_point_clustering/angular_tpcf.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering
  copying halotools/mock_observables/two_point_clustering/clustering_helpers.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering
  copying halotools/mock_observables/two_point_clustering/marked_tpcf.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering
  copying halotools/mock_observables/two_point_clustering/rp_pi_tpcf.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering
  copying halotools/mock_observables/two_point_clustering/rp_pi_tpcf_jackknife.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering
  copying halotools/mock_observables/two_point_clustering/s_mu_tpcf.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering
  copying halotools/mock_observables/two_point_clustering/tpcf.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering
  copying halotools/mock_observables/two_point_clustering/tpcf_estimators.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering
  copying halotools/mock_observables/two_point_clustering/tpcf_jackknife.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering
  copying halotools/mock_observables/two_point_clustering/tpcf_multipole.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering
  copying halotools/mock_observables/two_point_clustering/tpcf_one_two_halo_decomp.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering
  copying halotools/mock_observables/two_point_clustering/wp.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering
  copying halotools/mock_observables/two_point_clustering/wp_jackknife.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/velocity_decomposition
  copying halotools/mock_observables/velocity_decomposition/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/velocity_decomposition
  copying halotools/mock_observables/velocity_decomposition/radial_velocity_decomposition.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/velocity_decomposition
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/void_statistics
  copying halotools/mock_observables/void_statistics/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/void_statistics
  copying halotools/mock_observables/void_statistics/underdensity_prob_func.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/void_statistics
  copying halotools/mock_observables/void_statistics/void_prob_func.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/void_statistics
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/counts_in_cells/engines
  copying halotools/mock_observables/counts_in_cells/engines/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/counts_in_cells/engines
  copying halotools/mock_observables/counts_in_cells/engines/setup_package.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/counts_in_cells/engines
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/counts_in_cells/tests
  copying halotools/mock_observables/counts_in_cells/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/counts_in_cells/tests
  copying halotools/mock_observables/counts_in_cells/tests/pure_python_counts_in_cells.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/counts_in_cells/tests
  copying halotools/mock_observables/counts_in_cells/tests/test_counts_in_cylinders.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/counts_in_cells/tests
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/group_identification/test_groups
  copying halotools/mock_observables/group_identification/test_groups/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/group_identification/test_groups
  copying halotools/mock_observables/group_identification/test_groups/test_fof_groups.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/group_identification/test_groups
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/engines
  copying halotools/mock_observables/isolation_functions/engines/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/engines
  copying halotools/mock_observables/isolation_functions/engines/setup_package.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/engines
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests
  copying halotools/mock_observables/isolation_functions/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests
  copying halotools/mock_observables/isolation_functions/tests/pure_python_isolation.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests
  copying halotools/mock_observables/isolation_functions/tests/test_brute_force_comparisons.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests
  copying halotools/mock_observables/isolation_functions/tests/test_conditional_cylindrical_isolation.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests
  copying halotools/mock_observables/isolation_functions/tests/test_conditional_spherical_isolation.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests
  copying halotools/mock_observables/isolation_functions/tests/test_cylindrical_isolation.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests
  copying halotools/mock_observables/isolation_functions/tests/test_isolation_helpers.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests
  copying halotools/mock_observables/isolation_functions/tests/test_pure_python_isolation.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests
  copying halotools/mock_observables/isolation_functions/tests/test_spherical_isolation.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/large_scale_density/tests
  copying halotools/mock_observables/large_scale_density/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/large_scale_density/tests
  copying halotools/mock_observables/large_scale_density/tests/test_large_scale_density_spherical_annulus.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/large_scale_density/tests
  copying halotools/mock_observables/large_scale_density/tests/test_large_scale_density_spherical_volume.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/large_scale_density/tests
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/cpairs
  copying halotools/mock_observables/pair_counters/cpairs/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/cpairs
  copying halotools/mock_observables/pair_counters/cpairs/setup_package.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/cpairs
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/marked_cpairs
  copying halotools/mock_observables/pair_counters/marked_cpairs/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/marked_cpairs
  copying halotools/mock_observables/pair_counters/marked_cpairs/setup_package.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/marked_cpairs
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters
  copying halotools/mock_observables/pair_counters/test_pair_counters/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters
  copying halotools/mock_observables/pair_counters/test_pair_counters/pure_python_distance_matrix.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters
  copying halotools/mock_observables/pair_counters/test_pair_counters/pure_python_npairs_per_object_3d.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters
  copying halotools/mock_observables/pair_counters/test_pair_counters/test_marked_npairs_3d.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters
  copying halotools/mock_observables/pair_counters/test_pair_counters/test_marked_npairs_xy_z.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters
  copying halotools/mock_observables/pair_counters/test_pair_counters/test_mesh_helpers.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters
  copying halotools/mock_observables/pair_counters/test_pair_counters/test_non_cubic_volumes.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters
  copying halotools/mock_observables/pair_counters/test_pair_counters/test_npairs_3d.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters
  copying halotools/mock_observables/pair_counters/test_pair_counters/test_npairs_jackknife_3d.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters
  copying halotools/mock_observables/pair_counters/test_pair_counters/test_npairs_jackknife_xy_z.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters
  copying halotools/mock_observables/pair_counters/test_pair_counters/test_npairs_per_object_3d.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters
  copying halotools/mock_observables/pair_counters/test_pair_counters/test_npairs_projected.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters
  copying halotools/mock_observables/pair_counters/test_pair_counters/test_npairs_s_mu.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters
  copying halotools/mock_observables/pair_counters/test_pair_counters/test_npairs_xy_z.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters
  copying halotools/mock_observables/pair_counters/test_pair_counters/test_pairwise_distance_3d.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters
  copying halotools/mock_observables/pair_counters/test_pair_counters/test_rectangular_mesh.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters
  copying halotools/mock_observables/pair_counters/test_pair_counters/test_weighted_npairs_s_mu.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters
  copying halotools/mock_observables/pair_counters/test_pair_counters/test_wnpairs_pure_python.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/engines
  copying halotools/mock_observables/pairwise_velocities/engines/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/engines
  copying halotools/mock_observables/pairwise_velocities/engines/setup_package.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/engines
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests
  copying halotools/mock_observables/pairwise_velocities/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests
  copying halotools/mock_observables/pairwise_velocities/tests/pure_python_mean_radial_velocity_vs_r.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests
  copying halotools/mock_observables/pairwise_velocities/tests/test_los_pvd_vs_rp.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests
  copying halotools/mock_observables/pairwise_velocities/tests/test_mean_los_velocity_vs_rp.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests
  copying halotools/mock_observables/pairwise_velocities/tests/test_mean_radial_velocity_vs_r.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests
  copying halotools/mock_observables/pairwise_velocities/tests/test_pairwise_velocity_helpers.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests
  copying halotools/mock_observables/pairwise_velocities/tests/test_pairwise_velocity_stats.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests
  copying halotools/mock_observables/pairwise_velocities/tests/test_pure_python_mean_radial_velocity_vs_r.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests
  copying halotools/mock_observables/pairwise_velocities/tests/test_radial_pvd_vs_r.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests
  copying halotools/mock_observables/pairwise_velocities/tests/test_velocity_marked_npairs_3d.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/radial_profiles/engines
  copying halotools/mock_observables/radial_profiles/engines/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/radial_profiles/engines
  copying halotools/mock_observables/radial_profiles/engines/setup_package.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/radial_profiles/engines
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/radial_profiles/tests
  copying halotools/mock_observables/radial_profiles/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/radial_profiles/tests
  copying halotools/mock_observables/radial_profiles/tests/test_radial_profile_3d.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/radial_profiles/tests
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/engines
  copying halotools/mock_observables/surface_density/engines/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/engines
  copying halotools/mock_observables/surface_density/engines/setup_package.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/engines
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests
  copying halotools/mock_observables/surface_density/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests
  copying halotools/mock_observables/surface_density/tests/pure_python_weighted_npairs_per_object_xy.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests
  copying halotools/mock_observables/surface_density/tests/pure_python_weighted_npairs_xy.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests
  copying halotools/mock_observables/surface_density/tests/test_mass_in_cylinders.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests
  copying halotools/mock_observables/surface_density/tests/test_mean_delta_sigma.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests
  copying halotools/mock_observables/surface_density/tests/test_pure_python_weighted_npairs_xy.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests
  copying halotools/mock_observables/surface_density/tests/test_surface_density.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests
  copying halotools/mock_observables/surface_density/tests/test_surface_density_helpers.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests
  copying halotools/mock_observables/surface_density/tests/test_weighted_npairs_per_object_xy.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests
  copying halotools/mock_observables/surface_density/tests/test_weighted_npairs_xy.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations/engines
  copying halotools/mock_observables/tensor_calculations/engines/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations/engines
  copying halotools/mock_observables/tensor_calculations/engines/setup_package.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations/engines
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations/tests
  copying halotools/mock_observables/tensor_calculations/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations/tests
  copying halotools/mock_observables/tensor_calculations/tests/test_inertia_tensor.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations/tests
  copying halotools/mock_observables/tensor_calculations/tests/test_tensor_derived_quantities.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations/tests
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests
  copying halotools/mock_observables/two_point_clustering/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests
  copying halotools/mock_observables/two_point_clustering/tests/locate_external_unit_testing_data.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests
  copying halotools/mock_observables/two_point_clustering/tests/test_angular_tpcf.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests
  copying halotools/mock_observables/two_point_clustering/tests/test_clustering_helpers.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests
  copying halotools/mock_observables/two_point_clustering/tests/test_marked_tpcf.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests
  copying halotools/mock_observables/two_point_clustering/tests/test_rp_pi_tpcf.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests
  copying halotools/mock_observables/two_point_clustering/tests/test_rp_pi_tpcf_jackknife.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests
  copying halotools/mock_observables/two_point_clustering/tests/test_s_mu_tpcf.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests
  copying halotools/mock_observables/two_point_clustering/tests/test_tpcf.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests
  copying halotools/mock_observables/two_point_clustering/tests/test_tpcf_estimators.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests
  copying halotools/mock_observables/two_point_clustering/tests/test_tpcf_jackknife.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests
  copying halotools/mock_observables/two_point_clustering/tests/test_tpcf_multipole.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests
  copying halotools/mock_observables/two_point_clustering/tests/test_tpcf_one_two_halo.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests
  copying halotools/mock_observables/two_point_clustering/tests/test_wp.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests
  copying halotools/mock_observables/two_point_clustering/tests/test_wp_jackknife.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/velocity_decomposition/tests
  copying halotools/mock_observables/velocity_decomposition/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/velocity_decomposition/tests
  copying halotools/mock_observables/velocity_decomposition/tests/test_radial_velocity.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/velocity_decomposition/tests
  creating build/lib.linux-x86_64-3.9/halotools/mock_observables/void_statistics/tests
  copying halotools/mock_observables/void_statistics/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/void_statistics/tests
  copying halotools/mock_observables/void_statistics/tests/test_underdensity_prob_func.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/void_statistics/tests
  copying halotools/mock_observables/void_statistics/tests/test_void_prob_func.py -> build/lib.linux-x86_64-3.9/halotools/mock_observables/void_statistics/tests
  creating build/lib.linux-x86_64-3.9/halotools/sim_manager/tests
  copying halotools/sim_manager/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager/tests
  copying halotools/sim_manager/tests/helper_functions.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager/tests
  copying halotools/sim_manager/tests/test_cached_halo_catalog.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager/tests
  copying halotools/sim_manager/tests/test_download_manager.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager/tests
  copying halotools/sim_manager/tests/test_fake_sim.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager/tests
  copying halotools/sim_manager/tests/test_halo_table_cache.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager/tests
  copying halotools/sim_manager/tests/test_halo_table_cache_log_entry.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager/tests
  copying halotools/sim_manager/tests/test_load_default_halocat.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager/tests
  copying halotools/sim_manager/tests/test_ptcl_table_cache.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager/tests
  copying halotools/sim_manager/tests/test_ptcl_table_cache_log_entry.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager/tests
  copying halotools/sim_manager/tests/test_rockstar_hlist_reader.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager/tests
  copying halotools/sim_manager/tests/test_supported_sims.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager/tests
  copying halotools/sim_manager/tests/test_tabular_ascii_reader.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager/tests
  copying halotools/sim_manager/tests/test_user_supplied_halo_catalog.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager/tests
  copying halotools/sim_manager/tests/test_user_supplied_ptcl_catalog.py -> build/lib.linux-x86_64-3.9/halotools/sim_manager/tests
  creating build/lib.linux-x86_64-3.9/halotools/tests/docs_code_block_tests
  copying halotools/tests/docs_code_block_tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/tests/docs_code_block_tests
  copying halotools/tests/docs_code_block_tests/test_hod_model_factory_tutorial.py -> build/lib.linux-x86_64-3.9/halotools/tests/docs_code_block_tests
  copying halotools/tests/docs_code_block_tests/test_preloaded_mockpop.py -> build/lib.linux-x86_64-3.9/halotools/tests/docs_code_block_tests
  creating build/lib.linux-x86_64-3.9/halotools/utils/engines
  copying halotools/utils/engines/__init__.py -> build/lib.linux-x86_64-3.9/halotools/utils/engines
  copying halotools/utils/engines/setup_package.py -> build/lib.linux-x86_64-3.9/halotools/utils/engines
  creating build/lib.linux-x86_64-3.9/halotools/utils/tests
  copying halotools/utils/tests/__init__.py -> build/lib.linux-x86_64-3.9/halotools/utils/tests
  copying halotools/utils/tests/setup_package.py -> build/lib.linux-x86_64-3.9/halotools/utils/tests
  copying halotools/utils/tests/test_array_indexing_manipulations.py -> build/lib.linux-x86_64-3.9/halotools/utils/tests
  copying halotools/utils/tests/test_array_utils.py -> build/lib.linux-x86_64-3.9/halotools/utils/tests
  copying halotools/utils/tests/test_compute_richness.py -> build/lib.linux-x86_64-3.9/halotools/utils/tests
  copying halotools/utils/tests/test_conditional_percentile.py -> build/lib.linux-x86_64-3.9/halotools/utils/tests
  copying halotools/utils/tests/test_crossmatch.py -> build/lib.linux-x86_64-3.9/halotools/utils/tests
  copying halotools/utils/tests/test_distribution_matching.py -> build/lib.linux-x86_64-3.9/halotools/utils/tests
  copying halotools/utils/tests/test_group_member_generator.py -> build/lib.linux-x86_64-3.9/halotools/utils/tests
  copying halotools/utils/tests/test_io_utils.py -> build/lib.linux-x86_64-3.9/halotools/utils/tests
  copying halotools/utils/tests/test_its.py -> build/lib.linux-x86_64-3.9/halotools/utils/tests
  copying halotools/utils/tests/test_probabilistic_binning.py -> build/lib.linux-x86_64-3.9/halotools/utils/tests
  copying halotools/utils/tests/test_python_string_comparisons.py -> build/lib.linux-x86_64-3.9/halotools/utils/tests
  copying halotools/utils/tests/test_table_utils.py -> build/lib.linux-x86_64-3.9/halotools/utils/tests
  copying halotools/utils/tests/test_value_added_halo_table_functions.py -> build/lib.linux-x86_64-3.9/halotools/utils/tests
  creating build/lib.linux-x86_64-3.9/halotools/data
  copying halotools/data/README.rst -> build/lib.linux-x86_64-3.9/halotools/data
  copying halotools/_compiler.c -> build/lib.linux-x86_64-3.9/halotools
  copying halotools/mock_observables/pair_counters/cpairs/npairs_per_object_3d_engine.c -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/cpairs
  copying halotools/mock_observables/pair_counters/marked_cpairs/custom_marking_func.c -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/marked_cpairs
  copying halotools/mock_observables/pair_counters/marked_cpairs/marked_npairs_xy_z_engine.c -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/marked_cpairs
  copying halotools/mock_observables/pair_counters/marked_cpairs/marking_functions.c -> build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/marked_cpairs
  copying halotools/mock_observables/surface_density/engines/mean_ds_one_two_halo_decomp_halo_id_engine.c -> build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/engines
  copying halotools/mock_observables/surface_density/engines/mean_ds_one_two_halo_decomp_rhalo_engine.c -> build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/engines
  copying halotools/mock_observables/tensor_calculations/engines/inertia_tensor_3d_engine.c -> build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations/engines
  copying halotools/tests/coveragerc -> build/lib.linux-x86_64-3.9/halotools/tests
  creating build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests/data
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests/data/van_den_bosch_nfw_vr_disp_c10.dat -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests/data
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests/data/van_den_bosch_nfw_vr_disp_c5.dat -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests/data
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests/data/van_den_bosch_nfw_vr_disp_ch10_cg5.dat -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests/data
  copying halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests/data/van_den_bosch_nfw_vr_disp_ch5_cg10.dat -> build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests/data
  creating build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/data
  copying halotools/sim_manager/tests/data/dummy_halocat_0.07812.list -> build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/data
  creating build/lib.linux-x86_64-3.9/halotools/utils/tests/data
  copying halotools/utils/tests/data/dummy_ascii.dat -> build/lib.linux-x86_64-3.9/halotools/utils/tests/data
  /mnt/home/lgarrison/miniconda3/envs/halotoolstest/lib/python3.9/site-packages/setuptools/lib2to3_ex.py:36: SetuptoolsDeprecationWarning: 2to3 support is deprecated. If the project still requires Python 2 support, please migrate to a single-codebase solution or employ an independent conversion process.
    warnings.warn(
  Fixing build/lib.linux-x86_64-3.9/halotools/__init__.py build/lib.linux-x86_64-3.9/halotools/_astropy_init.py build/lib.linux-x86_64-3.9/halotools/conftest.py build/lib.linux-x86_64-3.9/halotools/custom_exceptions.py build/lib.linux-x86_64-3.9/halotools/cython_version.py build/lib.linux-x86_64-3.9/halotools/version.py build/lib.linux-x86_64-3.9/halotools/empirical_models/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/model_defaults.py build/lib.linux-x86_64-3.9/halotools/empirical_models/model_helpers.py build/lib.linux-x86_64-3.9/halotools/extern/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/catalog_analysis_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/mock_observables_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/mock_survey.py build/lib.linux-x86_64-3.9/halotools/mock_observables/occupation_stats.py build/lib.linux-x86_64-3.9/halotools/sim_manager/__init__.py build/lib.linux-x86_64-3.9/halotools/sim_manager/cached_halo_catalog.py build/lib.linux-x86_64-3.9/halotools/sim_manager/download_manager.py build/lib.linux-x86_64-3.9/halotools/sim_manager/fake_sim.py build/lib.linux-x86_64-3.9/halotools/sim_manager/halo_table_cache.py build/lib.linux-x86_64-3.9/halotools/sim_manager/halo_table_cache_log_entry.py build/lib.linux-x86_64-3.9/halotools/sim_manager/ptcl_table_cache.py build/lib.linux-x86_64-3.9/halotools/sim_manager/ptcl_table_cache_log_entry.py build/lib.linux-x86_64-3.9/halotools/sim_manager/rockstar_hlist_reader.py build/lib.linux-x86_64-3.9/halotools/sim_manager/setup_package.py build/lib.linux-x86_64-3.9/halotools/sim_manager/sim_defaults.py build/lib.linux-x86_64-3.9/halotools/sim_manager/supported_sims.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tabular_ascii_reader.py build/lib.linux-x86_64-3.9/halotools/sim_manager/user_supplied_halo_catalog.py build/lib.linux-x86_64-3.9/halotools/sim_manager/user_supplied_ptcl_catalog.py build/lib.linux-x86_64-3.9/halotools/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/tests/ddc.py build/lib.linux-x86_64-3.9/halotools/tests/setup_package.py build/lib.linux-x86_64-3.9/halotools/tests/test_amurrica.py build/lib.linux-x86_64-3.9/halotools/tests/test_seed.py build/lib.linux-x86_64-3.9/halotools/tests/test_subpkg_imports.py build/lib.linux-x86_64-3.9/halotools/tests/usa.py build/lib.linux-x86_64-3.9/halotools/utils/__init__.py build/lib.linux-x86_64-3.9/halotools/utils/array_indexing_manipulations.py build/lib.linux-x86_64-3.9/halotools/utils/array_utils.py build/lib.linux-x86_64-3.9/halotools/utils/autosummary_workaround.py build/lib.linux-x86_64-3.9/halotools/utils/conditional_percentile.py build/lib.linux-x86_64-3.9/halotools/utils/crossmatch.py build/lib.linux-x86_64-3.9/halotools/utils/distribution_matching.py build/lib.linux-x86_64-3.9/halotools/utils/group_member_generator.py build/lib.linux-x86_64-3.9/halotools/utils/inverse_transformation_sampling.py build/lib.linux-x86_64-3.9/halotools/utils/io_utils.py build/lib.linux-x86_64-3.9/halotools/utils/load_umachine_binaries.py build/lib.linux-x86_64-3.9/halotools/utils/probabilistic_binning.py build/lib.linux-x86_64-3.9/halotools/utils/python_string_comparisons.py build/lib.linux-x86_64-3.9/halotools/utils/spherical_geometry.py build/lib.linux-x86_64-3.9/halotools/utils/table_utils.py build/lib.linux-x86_64-3.9/halotools/utils/value_added_halo_table_functions.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/bin_free_cam.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/conditional_abunmatch_bin_based.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/noisy_percentile.py build/lib.linux-x86_64-3.9/halotools/empirical_models/assembias_models/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/assembias_models/heaviside_assembias.py build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates/binary_galprop_models.py build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates/prim_galprop_model.py build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates/scatter_models.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/hod_mock_factory.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/hod_model_factory.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/mock_factory_template.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/mock_helpers.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/model_factory_template.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/prebuilt_model_factory.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/subhalo_mock_factory.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/subhalo_model_factory.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/cacciato09_components.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/leauthaud11_components.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/occupation_model_template.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tinker13_components.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/zheng07_components.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/zu_mandelbaum15_components.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/sfr_models/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/sfr_models/halo_mass_quenching.py build/lib.linux-x86_64-3.9/halotools/empirical_models/sfr_models/zu_mandelbaum16.py build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/behroozi10.py build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/moster13.py build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/smhm_helpers.py build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/zu_mandelbaum15.py build/lib.linux-x86_64-3.9/halotools/empirical_models/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/tests/test_model_helpers.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/engines/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/engines/setup_package.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/tests/naive_python_cam.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/tests/test_bin_free_cam.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/tests/test_conditional_abunmatch.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/tests/test_noisy_percentile.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/tests/test_pure_python.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/tests/test_sample2_window_function.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/tests/test_single_unit.py build/lib.linux-x86_64-3.9/halotools/empirical_models/assembias_models/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/assembias_models/tests/test_assembias.py build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates/tests/test_binary_galprop_models.py build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates/tests/test_prim_galprop_model.py build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates/tests/test_scatter_models.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/cacciato09.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/hearin15.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/leauthaud11.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/tinker13.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/zheng07.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/zu_mandelbaum15.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/zu_mandelbaum16.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/sfr_models/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/sfr_models/smhm_binary_sfr.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/smhm_models/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/smhm_models/behroozi10.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/tests/test_preloaded_models.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/tests/test_tinker13.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/tests/test_zheng07.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/tests/test_zu_mandelbaum16.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests/test_clf_support.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests/test_hod_factory.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests/test_hod_mock_factory.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests/test_hod_model_factory.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests/test_mock_helpers.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests/test_prebuilt_hod_model_factory.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests/test_prebuilt_subhalo_model_factory.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests/test_subhalo_model_factory.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/engines/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/engines/setup_package.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tests/test_cacciato09_clf.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tests/test_leauthaud11_hod.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tests/test_occupation_component.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tests/test_tinker13.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tests/test_zheng07_centrals.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tests/test_zheng07_satellites.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tests/test_zu_mandelbaum15_components.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/halo_boundary_functions.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/monte_carlo_helpers.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/profile_model_template.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/subhalo_based_models/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/subhalo_based_models/subhalo_phase_space.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/subhalo_based_models/subhalo_selection_kernel.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/centrals/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/centrals/trivial_phase_space.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/centrals/trivial_profile.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/tests/test_halo_boundary_functions.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/centrals/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/centrals/tests/test_trivial_phase_space.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/centrals/tests/test_trivial_profile.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/biased_nfw_phase_space.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/nfw_phase_space.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/nfw_profile.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/sfr_biased_nfw_phase_space.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/conc_mass/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/conc_mass/direct_from_halo_catalog.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/conc_mass/dutton_maccio14.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/biased_isotropic_velocity.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/mass_profile.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/mc_generate_nfw_radial_positions.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/unbiased_isotropic_velocity.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/conc_mass/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/conc_mass/tests/test_conc_mass.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests/setup_package.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests/test_biased_isotropic_velocity.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests/test_mc_generate_nfw_radial_positions.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests/test_unbiased_isotropic_velocity.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw/test_biased_nfw_consistency.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw/test_biased_nfw_consistency_mockpop.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw/test_biased_nfw_initialization.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw/test_biased_nfw_phase_space.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw/test_biased_nfw_phase_space_argument_handling.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw/test_conc_gal_bias_behavior.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw/test_mockpop.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_conc_mass_inheritance/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_conc_mass_inheritance/test_direct_from_halo_catalog.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_phase_space/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_phase_space/test_nfw_phase_space.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_phase_space/test_nfw_phase_space_argument_handling.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_phase_space/test_nfw_phase_space_functions.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_phase_space/test_nfw_phase_space_initialization.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_phase_space/test_nfw_phase_space_monte_carlo.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_profile/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_profile/test_colossus_consistency.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_profile/test_nfw_profile.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/subhalo_based_models/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/subhalo_based_models/tests/test_composite_model.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/subhalo_based_models/tests/test_subhalo_phase_space.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/subhalo_based_models/tests/test_subhalo_selection_kernel.py build/lib.linux-x86_64-3.9/halotools/empirical_models/sfr_models/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/sfr_models/tests/test_halo_mass_quenching.py build/lib.linux-x86_64-3.9/halotools/empirical_models/sfr_models/tests/test_zu_mandelbaum16.py build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/tests/test_behroozi10.py build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/tests/test_moster13.py build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/tests/test_redshift_defensiveness.py build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/tests/test_zu_mandelbaum15.py build/lib.linux-x86_64-3.9/halotools/mock_observables/counts_in_cells/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/counts_in_cells/counts_in_cylinders.py build/lib.linux-x86_64-3.9/halotools/mock_observables/group_identification/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/group_identification/fof_groups.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/conditional_cylindrical_isolation.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/conditional_spherical_isolation.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/cylindrical_isolation.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/isolation_functions_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/spherical_isolation.py build/lib.linux-x86_64-3.9/halotools/mock_observables/large_scale_density/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/large_scale_density/large_scale_density_spherical_annulus.py build/lib.linux-x86_64-3.9/halotools/mock_observables/large_scale_density/large_scale_density_spherical_volume.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/marked_npairs_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/marked_npairs_xy_z.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/mesh_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/npairs_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/npairs_jackknife_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/npairs_jackknife_xy_z.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/npairs_per_object_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/npairs_projected.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/npairs_s_mu.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/npairs_xy_z.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/pairs.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/pairwise_distance_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/pairwise_distance_xy_z.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/rectangular_mesh.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/rectangular_mesh_2d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/weighted_npairs_s_mu.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/los_pvd_vs_rp.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/mean_los_velocity_vs_rp.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/mean_radial_velocity_vs_r.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/pairwise_velocities_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/radial_pvd_vs_r.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/velocity_marked_npairs_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/velocity_marked_npairs_xy_z.py build/lib.linux-x86_64-3.9/halotools/mock_observables/radial_profiles/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/radial_profiles/radial_profile_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/radial_profiles/radial_profiles_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/mass_in_cylinders.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/mean_delta_sigma.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/surface_density.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/surface_density_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/weighted_npairs_per_object_xy.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/weighted_npairs_xy.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations/inertia_tensor.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations/tensor_derived_quantities.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tests/cf_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tests/test_catalog_analysis_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tests/test_mock_observables_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tests/test_mock_survey.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tests/test_occupation_stats.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/angular_tpcf.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/clustering_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/marked_tpcf.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/rp_pi_tpcf.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/rp_pi_tpcf_jackknife.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/s_mu_tpcf.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tpcf.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tpcf_estimators.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tpcf_jackknife.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tpcf_multipole.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tpcf_one_two_halo_decomp.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/wp.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/wp_jackknife.py build/lib.linux-x86_64-3.9/halotools/mock_observables/velocity_decomposition/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/velocity_decomposition/radial_velocity_decomposition.py build/lib.linux-x86_64-3.9/halotools/mock_observables/void_statistics/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/void_statistics/underdensity_prob_func.py build/lib.linux-x86_64-3.9/halotools/mock_observables/void_statistics/void_prob_func.py build/lib.linux-x86_64-3.9/halotools/mock_observables/counts_in_cells/engines/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/counts_in_cells/engines/setup_package.py build/lib.linux-x86_64-3.9/halotools/mock_observables/counts_in_cells/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/counts_in_cells/tests/pure_python_counts_in_cells.py build/lib.linux-x86_64-3.9/halotools/mock_observables/counts_in_cells/tests/test_counts_in_cylinders.py build/lib.linux-x86_64-3.9/halotools/mock_observables/group_identification/test_groups/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/group_identification/test_groups/test_fof_groups.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/engines/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/engines/setup_package.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests/pure_python_isolation.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests/test_brute_force_comparisons.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests/test_conditional_cylindrical_isolation.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests/test_conditional_spherical_isolation.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests/test_cylindrical_isolation.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests/test_isolation_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests/test_pure_python_isolation.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests/test_spherical_isolation.py build/lib.linux-x86_64-3.9/halotools/mock_observables/large_scale_density/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/large_scale_density/tests/test_large_scale_density_spherical_annulus.py build/lib.linux-x86_64-3.9/halotools/mock_observables/large_scale_density/tests/test_large_scale_density_spherical_volume.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/cpairs/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/cpairs/setup_package.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/marked_cpairs/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/marked_cpairs/setup_package.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/pure_python_distance_matrix.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/pure_python_npairs_per_object_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_marked_npairs_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_marked_npairs_xy_z.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_mesh_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_non_cubic_volumes.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_npairs_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_npairs_jackknife_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_npairs_jackknife_xy_z.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_npairs_per_object_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_npairs_projected.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_npairs_s_mu.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_npairs_xy_z.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_pairwise_distance_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_rectangular_mesh.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_weighted_npairs_s_mu.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_wnpairs_pure_python.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/engines/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/engines/setup_package.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests/pure_python_mean_radial_velocity_vs_r.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests/test_los_pvd_vs_rp.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests/test_mean_los_velocity_vs_rp.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests/test_mean_radial_velocity_vs_r.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests/test_pairwise_velocity_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests/test_pairwise_velocity_stats.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests/test_pure_python_mean_radial_velocity_vs_r.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests/test_radial_pvd_vs_r.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests/test_velocity_marked_npairs_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/radial_profiles/engines/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/radial_profiles/engines/setup_package.py build/lib.linux-x86_64-3.9/halotools/mock_observables/radial_profiles/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/radial_profiles/tests/test_radial_profile_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/engines/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/engines/setup_package.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests/pure_python_weighted_npairs_per_object_xy.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests/pure_python_weighted_npairs_xy.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests/test_mass_in_cylinders.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests/test_mean_delta_sigma.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests/test_pure_python_weighted_npairs_xy.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests/test_surface_density.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests/test_surface_density_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests/test_weighted_npairs_per_object_xy.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests/test_weighted_npairs_xy.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations/engines/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations/engines/setup_package.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations/tests/test_inertia_tensor.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations/tests/test_tensor_derived_quantities.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/locate_external_unit_testing_data.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_angular_tpcf.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_clustering_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_marked_tpcf.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_rp_pi_tpcf.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_rp_pi_tpcf_jackknife.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_s_mu_tpcf.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_tpcf.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_tpcf_estimators.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_tpcf_jackknife.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_tpcf_multipole.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_tpcf_one_two_halo.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_wp.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_wp_jackknife.py build/lib.linux-x86_64-3.9/halotools/mock_observables/velocity_decomposition/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/velocity_decomposition/tests/test_radial_velocity.py build/lib.linux-x86_64-3.9/halotools/mock_observables/void_statistics/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/void_statistics/tests/test_underdensity_prob_func.py build/lib.linux-x86_64-3.9/halotools/mock_observables/void_statistics/tests/test_void_prob_func.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/helper_functions.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_cached_halo_catalog.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_download_manager.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_fake_sim.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_halo_table_cache.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_halo_table_cache_log_entry.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_load_default_halocat.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_ptcl_table_cache.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_ptcl_table_cache_log_entry.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_rockstar_hlist_reader.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_supported_sims.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_tabular_ascii_reader.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_user_supplied_halo_catalog.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_user_supplied_ptcl_catalog.py build/lib.linux-x86_64-3.9/halotools/tests/docs_code_block_tests/__init__.py build/lib.linux-x86_64-3.9/halotools/tests/docs_code_block_tests/test_hod_model_factory_tutorial.py build/lib.linux-x86_64-3.9/halotools/tests/docs_code_block_tests/test_preloaded_mockpop.py build/lib.linux-x86_64-3.9/halotools/utils/engines/__init__.py build/lib.linux-x86_64-3.9/halotools/utils/engines/setup_package.py build/lib.linux-x86_64-3.9/halotools/utils/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/utils/tests/setup_package.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_array_indexing_manipulations.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_array_utils.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_compute_richness.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_conditional_percentile.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_crossmatch.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_distribution_matching.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_group_member_generator.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_io_utils.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_its.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_probabilistic_binning.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_python_string_comparisons.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_table_utils.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_value_added_halo_table_functions.py
  Skipping optional fixer: buffer
  Skipping optional fixer: idioms
  Skipping optional fixer: set_literal
  Skipping optional fixer: ws_comma
  Fixing build/lib.linux-x86_64-3.9/halotools/__init__.py build/lib.linux-x86_64-3.9/halotools/_astropy_init.py build/lib.linux-x86_64-3.9/halotools/conftest.py build/lib.linux-x86_64-3.9/halotools/custom_exceptions.py build/lib.linux-x86_64-3.9/halotools/cython_version.py build/lib.linux-x86_64-3.9/halotools/version.py build/lib.linux-x86_64-3.9/halotools/empirical_models/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/model_defaults.py build/lib.linux-x86_64-3.9/halotools/empirical_models/model_helpers.py build/lib.linux-x86_64-3.9/halotools/extern/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/catalog_analysis_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/mock_observables_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/mock_survey.py build/lib.linux-x86_64-3.9/halotools/mock_observables/occupation_stats.py build/lib.linux-x86_64-3.9/halotools/sim_manager/__init__.py build/lib.linux-x86_64-3.9/halotools/sim_manager/cached_halo_catalog.py build/lib.linux-x86_64-3.9/halotools/sim_manager/download_manager.py build/lib.linux-x86_64-3.9/halotools/sim_manager/fake_sim.py build/lib.linux-x86_64-3.9/halotools/sim_manager/halo_table_cache.py build/lib.linux-x86_64-3.9/halotools/sim_manager/halo_table_cache_log_entry.py build/lib.linux-x86_64-3.9/halotools/sim_manager/ptcl_table_cache.py build/lib.linux-x86_64-3.9/halotools/sim_manager/ptcl_table_cache_log_entry.py build/lib.linux-x86_64-3.9/halotools/sim_manager/rockstar_hlist_reader.py build/lib.linux-x86_64-3.9/halotools/sim_manager/setup_package.py build/lib.linux-x86_64-3.9/halotools/sim_manager/sim_defaults.py build/lib.linux-x86_64-3.9/halotools/sim_manager/supported_sims.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tabular_ascii_reader.py build/lib.linux-x86_64-3.9/halotools/sim_manager/user_supplied_halo_catalog.py build/lib.linux-x86_64-3.9/halotools/sim_manager/user_supplied_ptcl_catalog.py build/lib.linux-x86_64-3.9/halotools/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/tests/ddc.py build/lib.linux-x86_64-3.9/halotools/tests/setup_package.py build/lib.linux-x86_64-3.9/halotools/tests/test_amurrica.py build/lib.linux-x86_64-3.9/halotools/tests/test_seed.py build/lib.linux-x86_64-3.9/halotools/tests/test_subpkg_imports.py build/lib.linux-x86_64-3.9/halotools/tests/usa.py build/lib.linux-x86_64-3.9/halotools/utils/__init__.py build/lib.linux-x86_64-3.9/halotools/utils/array_indexing_manipulations.py build/lib.linux-x86_64-3.9/halotools/utils/array_utils.py build/lib.linux-x86_64-3.9/halotools/utils/autosummary_workaround.py build/lib.linux-x86_64-3.9/halotools/utils/conditional_percentile.py build/lib.linux-x86_64-3.9/halotools/utils/crossmatch.py build/lib.linux-x86_64-3.9/halotools/utils/distribution_matching.py build/lib.linux-x86_64-3.9/halotools/utils/group_member_generator.py build/lib.linux-x86_64-3.9/halotools/utils/inverse_transformation_sampling.py build/lib.linux-x86_64-3.9/halotools/utils/io_utils.py build/lib.linux-x86_64-3.9/halotools/utils/load_umachine_binaries.py build/lib.linux-x86_64-3.9/halotools/utils/probabilistic_binning.py build/lib.linux-x86_64-3.9/halotools/utils/python_string_comparisons.py build/lib.linux-x86_64-3.9/halotools/utils/spherical_geometry.py build/lib.linux-x86_64-3.9/halotools/utils/table_utils.py build/lib.linux-x86_64-3.9/halotools/utils/value_added_halo_table_functions.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/bin_free_cam.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/conditional_abunmatch_bin_based.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/noisy_percentile.py build/lib.linux-x86_64-3.9/halotools/empirical_models/assembias_models/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/assembias_models/heaviside_assembias.py build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates/binary_galprop_models.py build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates/prim_galprop_model.py build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates/scatter_models.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/hod_mock_factory.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/hod_model_factory.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/mock_factory_template.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/mock_helpers.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/model_factory_template.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/prebuilt_model_factory.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/subhalo_mock_factory.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/subhalo_model_factory.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/cacciato09_components.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/leauthaud11_components.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/occupation_model_template.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tinker13_components.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/zheng07_components.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/zu_mandelbaum15_components.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/sfr_models/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/sfr_models/halo_mass_quenching.py build/lib.linux-x86_64-3.9/halotools/empirical_models/sfr_models/zu_mandelbaum16.py build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/behroozi10.py build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/moster13.py build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/smhm_helpers.py build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/zu_mandelbaum15.py build/lib.linux-x86_64-3.9/halotools/empirical_models/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/tests/test_model_helpers.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/engines/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/engines/setup_package.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/tests/naive_python_cam.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/tests/test_bin_free_cam.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/tests/test_conditional_abunmatch.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/tests/test_noisy_percentile.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/tests/test_pure_python.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/tests/test_sample2_window_function.py build/lib.linux-x86_64-3.9/halotools/empirical_models/abunmatch/tests/test_single_unit.py build/lib.linux-x86_64-3.9/halotools/empirical_models/assembias_models/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/assembias_models/tests/test_assembias.py build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates/tests/test_binary_galprop_models.py build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates/tests/test_prim_galprop_model.py build/lib.linux-x86_64-3.9/halotools/empirical_models/component_model_templates/tests/test_scatter_models.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/cacciato09.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/hearin15.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/leauthaud11.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/tinker13.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/zheng07.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/zu_mandelbaum15.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/zu_mandelbaum16.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/sfr_models/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/sfr_models/smhm_binary_sfr.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/smhm_models/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/smhm_models/behroozi10.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/tests/test_preloaded_models.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/tests/test_tinker13.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/tests/test_zheng07.py build/lib.linux-x86_64-3.9/halotools/empirical_models/composite_models/hod_models/tests/test_zu_mandelbaum16.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests/test_clf_support.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests/test_hod_factory.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests/test_hod_mock_factory.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests/test_hod_model_factory.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests/test_mock_helpers.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests/test_prebuilt_hod_model_factory.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests/test_prebuilt_subhalo_model_factory.py build/lib.linux-x86_64-3.9/halotools/empirical_models/factories/tests/test_subhalo_model_factory.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/engines/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/engines/setup_package.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tests/test_cacciato09_clf.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tests/test_leauthaud11_hod.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tests/test_occupation_component.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tests/test_tinker13.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tests/test_zheng07_centrals.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tests/test_zheng07_satellites.py build/lib.linux-x86_64-3.9/halotools/empirical_models/occupation_models/tests/test_zu_mandelbaum15_components.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/halo_boundary_functions.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/monte_carlo_helpers.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/profile_model_template.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/subhalo_based_models/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/subhalo_based_models/subhalo_phase_space.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/subhalo_based_models/subhalo_selection_kernel.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/centrals/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/centrals/trivial_phase_space.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/centrals/trivial_profile.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/tests/test_halo_boundary_functions.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/centrals/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/centrals/tests/test_trivial_phase_space.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/centrals/tests/test_trivial_profile.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/biased_nfw_phase_space.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/nfw_phase_space.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/nfw_profile.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/sfr_biased_nfw_phase_space.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/conc_mass/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/conc_mass/direct_from_halo_catalog.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/conc_mass/dutton_maccio14.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/biased_isotropic_velocity.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/mass_profile.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/mc_generate_nfw_radial_positions.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/unbiased_isotropic_velocity.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/conc_mass/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/conc_mass/tests/test_conc_mass.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests/setup_package.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests/test_biased_isotropic_velocity.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests/test_mc_generate_nfw_radial_positions.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/kernels/tests/test_unbiased_isotropic_velocity.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw/test_biased_nfw_consistency.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw/test_biased_nfw_consistency_mockpop.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw/test_biased_nfw_initialization.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw/test_biased_nfw_phase_space.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw/test_biased_nfw_phase_space_argument_handling.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw/test_conc_gal_bias_behavior.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_biased_nfw/test_mockpop.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_conc_mass_inheritance/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_conc_mass_inheritance/test_direct_from_halo_catalog.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_phase_space/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_phase_space/test_nfw_phase_space.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_phase_space/test_nfw_phase_space_argument_handling.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_phase_space/test_nfw_phase_space_functions.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_phase_space/test_nfw_phase_space_initialization.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_phase_space/test_nfw_phase_space_monte_carlo.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_profile/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_profile/test_colossus_consistency.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/analytic_models/satellites/nfw/tests/test_nfw_profile/test_nfw_profile.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/subhalo_based_models/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/subhalo_based_models/tests/test_composite_model.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/subhalo_based_models/tests/test_subhalo_phase_space.py build/lib.linux-x86_64-3.9/halotools/empirical_models/phase_space_models/subhalo_based_models/tests/test_subhalo_selection_kernel.py build/lib.linux-x86_64-3.9/halotools/empirical_models/sfr_models/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/sfr_models/tests/test_halo_mass_quenching.py build/lib.linux-x86_64-3.9/halotools/empirical_models/sfr_models/tests/test_zu_mandelbaum16.py build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/tests/test_behroozi10.py build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/tests/test_moster13.py build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/tests/test_redshift_defensiveness.py build/lib.linux-x86_64-3.9/halotools/empirical_models/smhm_models/tests/test_zu_mandelbaum15.py build/lib.linux-x86_64-3.9/halotools/mock_observables/counts_in_cells/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/counts_in_cells/counts_in_cylinders.py build/lib.linux-x86_64-3.9/halotools/mock_observables/group_identification/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/group_identification/fof_groups.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/conditional_cylindrical_isolation.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/conditional_spherical_isolation.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/cylindrical_isolation.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/isolation_functions_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/spherical_isolation.py build/lib.linux-x86_64-3.9/halotools/mock_observables/large_scale_density/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/large_scale_density/large_scale_density_spherical_annulus.py build/lib.linux-x86_64-3.9/halotools/mock_observables/large_scale_density/large_scale_density_spherical_volume.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/marked_npairs_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/marked_npairs_xy_z.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/mesh_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/npairs_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/npairs_jackknife_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/npairs_jackknife_xy_z.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/npairs_per_object_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/npairs_projected.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/npairs_s_mu.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/npairs_xy_z.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/pairs.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/pairwise_distance_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/pairwise_distance_xy_z.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/rectangular_mesh.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/rectangular_mesh_2d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/weighted_npairs_s_mu.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/los_pvd_vs_rp.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/mean_los_velocity_vs_rp.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/mean_radial_velocity_vs_r.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/pairwise_velocities_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/radial_pvd_vs_r.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/velocity_marked_npairs_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/velocity_marked_npairs_xy_z.py build/lib.linux-x86_64-3.9/halotools/mock_observables/radial_profiles/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/radial_profiles/radial_profile_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/radial_profiles/radial_profiles_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/mass_in_cylinders.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/mean_delta_sigma.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/surface_density.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/surface_density_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/weighted_npairs_per_object_xy.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/weighted_npairs_xy.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations/inertia_tensor.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations/tensor_derived_quantities.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tests/cf_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tests/test_catalog_analysis_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tests/test_mock_observables_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tests/test_mock_survey.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tests/test_occupation_stats.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/angular_tpcf.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/clustering_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/marked_tpcf.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/rp_pi_tpcf.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/rp_pi_tpcf_jackknife.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/s_mu_tpcf.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tpcf.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tpcf_estimators.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tpcf_jackknife.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tpcf_multipole.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tpcf_one_two_halo_decomp.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/wp.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/wp_jackknife.py build/lib.linux-x86_64-3.9/halotools/mock_observables/velocity_decomposition/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/velocity_decomposition/radial_velocity_decomposition.py build/lib.linux-x86_64-3.9/halotools/mock_observables/void_statistics/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/void_statistics/underdensity_prob_func.py build/lib.linux-x86_64-3.9/halotools/mock_observables/void_statistics/void_prob_func.py build/lib.linux-x86_64-3.9/halotools/mock_observables/counts_in_cells/engines/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/counts_in_cells/engines/setup_package.py build/lib.linux-x86_64-3.9/halotools/mock_observables/counts_in_cells/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/counts_in_cells/tests/pure_python_counts_in_cells.py build/lib.linux-x86_64-3.9/halotools/mock_observables/counts_in_cells/tests/test_counts_in_cylinders.py build/lib.linux-x86_64-3.9/halotools/mock_observables/group_identification/test_groups/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/group_identification/test_groups/test_fof_groups.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/engines/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/engines/setup_package.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests/pure_python_isolation.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests/test_brute_force_comparisons.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests/test_conditional_cylindrical_isolation.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests/test_conditional_spherical_isolation.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests/test_cylindrical_isolation.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests/test_isolation_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests/test_pure_python_isolation.py build/lib.linux-x86_64-3.9/halotools/mock_observables/isolation_functions/tests/test_spherical_isolation.py build/lib.linux-x86_64-3.9/halotools/mock_observables/large_scale_density/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/large_scale_density/tests/test_large_scale_density_spherical_annulus.py build/lib.linux-x86_64-3.9/halotools/mock_observables/large_scale_density/tests/test_large_scale_density_spherical_volume.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/cpairs/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/cpairs/setup_package.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/marked_cpairs/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/marked_cpairs/setup_package.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/pure_python_distance_matrix.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/pure_python_npairs_per_object_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_marked_npairs_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_marked_npairs_xy_z.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_mesh_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_non_cubic_volumes.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_npairs_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_npairs_jackknife_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_npairs_jackknife_xy_z.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_npairs_per_object_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_npairs_projected.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_npairs_s_mu.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_npairs_xy_z.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_pairwise_distance_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_rectangular_mesh.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_weighted_npairs_s_mu.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pair_counters/test_pair_counters/test_wnpairs_pure_python.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/engines/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/engines/setup_package.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests/pure_python_mean_radial_velocity_vs_r.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests/test_los_pvd_vs_rp.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests/test_mean_los_velocity_vs_rp.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests/test_mean_radial_velocity_vs_r.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests/test_pairwise_velocity_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests/test_pairwise_velocity_stats.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests/test_pure_python_mean_radial_velocity_vs_r.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests/test_radial_pvd_vs_r.py build/lib.linux-x86_64-3.9/halotools/mock_observables/pairwise_velocities/tests/test_velocity_marked_npairs_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/radial_profiles/engines/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/radial_profiles/engines/setup_package.py build/lib.linux-x86_64-3.9/halotools/mock_observables/radial_profiles/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/radial_profiles/tests/test_radial_profile_3d.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/engines/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/engines/setup_package.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests/pure_python_weighted_npairs_per_object_xy.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests/pure_python_weighted_npairs_xy.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests/test_mass_in_cylinders.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests/test_mean_delta_sigma.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests/test_pure_python_weighted_npairs_xy.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests/test_surface_density.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests/test_surface_density_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests/test_weighted_npairs_per_object_xy.py build/lib.linux-x86_64-3.9/halotools/mock_observables/surface_density/tests/test_weighted_npairs_xy.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations/engines/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations/engines/setup_package.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations/tests/test_inertia_tensor.py build/lib.linux-x86_64-3.9/halotools/mock_observables/tensor_calculations/tests/test_tensor_derived_quantities.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/locate_external_unit_testing_data.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_angular_tpcf.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_clustering_helpers.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_marked_tpcf.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_rp_pi_tpcf.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_rp_pi_tpcf_jackknife.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_s_mu_tpcf.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_tpcf.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_tpcf_estimators.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_tpcf_jackknife.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_tpcf_multipole.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_tpcf_one_two_halo.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_wp.py build/lib.linux-x86_64-3.9/halotools/mock_observables/two_point_clustering/tests/test_wp_jackknife.py build/lib.linux-x86_64-3.9/halotools/mock_observables/velocity_decomposition/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/velocity_decomposition/tests/test_radial_velocity.py build/lib.linux-x86_64-3.9/halotools/mock_observables/void_statistics/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/mock_observables/void_statistics/tests/test_underdensity_prob_func.py build/lib.linux-x86_64-3.9/halotools/mock_observables/void_statistics/tests/test_void_prob_func.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/helper_functions.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_cached_halo_catalog.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_download_manager.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_fake_sim.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_halo_table_cache.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_halo_table_cache_log_entry.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_load_default_halocat.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_ptcl_table_cache.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_ptcl_table_cache_log_entry.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_rockstar_hlist_reader.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_supported_sims.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_tabular_ascii_reader.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_user_supplied_halo_catalog.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_user_supplied_ptcl_catalog.py build/lib.linux-x86_64-3.9/halotools/tests/docs_code_block_tests/__init__.py build/lib.linux-x86_64-3.9/halotools/tests/docs_code_block_tests/test_hod_model_factory_tutorial.py build/lib.linux-x86_64-3.9/halotools/tests/docs_code_block_tests/test_preloaded_mockpop.py build/lib.linux-x86_64-3.9/halotools/utils/engines/__init__.py build/lib.linux-x86_64-3.9/halotools/utils/engines/setup_package.py build/lib.linux-x86_64-3.9/halotools/utils/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/utils/tests/setup_package.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_array_indexing_manipulations.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_array_utils.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_compute_richness.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_conditional_percentile.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_crossmatch.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_distribution_matching.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_group_member_generator.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_io_utils.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_its.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_probabilistic_binning.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_python_string_comparisons.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_table_utils.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_value_added_halo_table_functions.py
  Skipping optional fixer: buffer
  Skipping optional fixer: idioms
  Skipping optional fixer: set_literal
  Skipping optional fixer: ws_comma
  running build_ext
  Traceback (most recent call last):
    File "<string>", line 1, in <module>
    File "/tmp/pip-install-1rk9qkn1/halotools_64462846c6914f6da18cc1bf723003b8/setup.py", line 101, in <module>
      setup(name=PACKAGENAME,
    File "/mnt/home/lgarrison/miniconda3/envs/halotoolstest/lib/python3.9/site-packages/setuptools/__init__.py", line 153, in setup
      return distutils.core.setup(**attrs)
    File "/mnt/home/lgarrison/miniconda3/envs/halotoolstest/lib/python3.9/distutils/core.py", line 148, in setup
      dist.run_commands()
    File "/mnt/home/lgarrison/miniconda3/envs/halotoolstest/lib/python3.9/distutils/dist.py", line 966, in run_commands
      self.run_command(cmd)
    File "/mnt/home/lgarrison/miniconda3/envs/halotoolstest/lib/python3.9/distutils/dist.py", line 985, in run_command
      cmd_obj.run()
    File "/mnt/home/lgarrison/miniconda3/envs/halotoolstest/lib/python3.9/site-packages/wheel/bdist_wheel.py", line 299, in run
      self.run_command('build')
    File "/mnt/home/lgarrison/miniconda3/envs/halotoolstest/lib/python3.9/distutils/cmd.py", line 313, in run_command
      self.distribution.run_command(command)
    File "/mnt/home/lgarrison/miniconda3/envs/halotoolstest/lib/python3.9/distutils/dist.py", line 985, in run_command
      cmd_obj.run()
    File "/mnt/home/lgarrison/miniconda3/envs/halotoolstest/lib/python3.9/distutils/command/build.py", line 135, in run
      self.run_command(cmd_name)
    File "/mnt/home/lgarrison/miniconda3/envs/halotoolstest/lib/python3.9/distutils/cmd.py", line 313, in run_command
      self.distribution.run_command(command)
    File "/mnt/home/lgarrison/miniconda3/envs/halotoolstest/lib/python3.9/distutils/dist.py", line 985, in run_command
      cmd_obj.run()
    File "/tmp/pip-install-1rk9qkn1/halotools_64462846c6914f6da18cc1bf723003b8/.eggs/astropy_helpers-2.0.11-py3.9.egg/astropy_helpers/commands/build_ext.py", line 296, in run
      np_include = get_numpy_include_path()
    File "/tmp/pip-install-1rk9qkn1/halotools_64462846c6914f6da18cc1bf723003b8/.eggs/astropy_helpers-2.0.11-py3.9.egg/astropy_helpers/utils.py", line 89, in get_numpy_include_path
      import numpy
  ModuleNotFoundError: No module named 'numpy'
  ----------------------------------------
  ERROR: Failed building wheel for halotools
  Running setup.py clean for halotools
Failed to build halotools
Installing collected packages: numpy, urllib3, soupsieve, pyerfa, idna, charset-normalizer, certifi, scipy, requests, beautifulsoup4, astropy, halotools
ob_func.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/helper_functions.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_cached_halo_catalog.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_download_manager.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_fake_sim.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_halo_table_cache.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_halo_table_cache_log_entry.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_load_default_halocat.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_ptcl_table_cache.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_ptcl_table_cache_log_entry.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_rockstar_hlist_reader.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_supported_sims.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_tabular_ascii_reader.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_user_supplied_halo_catalog.py build/lib.linux-x86_64-3.9/halotools/sim_manager/tests/test_user_supplied_ptcl_catalog.py build/lib.linux-x86_64-3.9/halotools/tests/docs_code_block_tests/__init__.py build/lib.linux-x86_64-3.9/halotools/tests/docs_code_block_tests/test_hod_model_factory_tutorial.py build/lib.linux-x86_64-3.9/halotools/tests/docs_code_block_tests/test_preloaded_mockpop.py build/lib.linux-x86_64-3.9/halotools/utils/engines/__init__.py build/lib.linux-x86_64-3.9/halotools/utils/engines/setup_package.py build/lib.linux-x86_64-3.9/halotools/utils/tests/__init__.py build/lib.linux-x86_64-3.9/halotools/utils/tests/setup_package.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_array_indexing_manipulations.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_array_utils.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_compute_richness.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_conditional_percentile.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_crossmatch.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_distribution_matching.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_group_member_generator.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_io_utils.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_its.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_probabilistic_binning.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_python_string_comparisons.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_table_utils.py build/lib.linux-x86_64-3.9/halotools/utils/tests/test_value_added_halo_table_functions.py
  Skipping optional fixer: buffer
  Skipping optional fixer: idioms
  Skipping optional fixer: set_literal
  Skipping optional fixer: ws_comma
  running build_ext
  Traceback (most recent call last):
    File "<string>", line 1, in <module>
    File "/tmp/pip-install-1rk9qkn1/halotools_64462846c6914f6da18cc1bf723003b8/setup.py", line 101, in <module>
      setup(name=PACKAGENAME,
    File "/mnt/home/lgarrison/miniconda3/envs/halotoolstest/lib/python3.9/site-packages/setuptools/__init__.py", line 153, in setup
      return distutils.core.setup(**attrs)
    File "/mnt/home/lgarrison/miniconda3/envs/halotoolstest/lib/python3.9/distutils/core.py", line 148, in setup
      dist.run_commands()
    File "/mnt/home/lgarrison/miniconda3/envs/halotoolstest/lib/python3.9/distutils/dist.py", line 966, in run_commands
      self.run_command(cmd)
    File "/mnt/home/lgarrison/miniconda3/envs/halotoolstest/lib/python3.9/distutils/dist.py", line 985, in run_command
      cmd_obj.run()
    File "/mnt/home/lgarrison/miniconda3/envs/halotoolstest/lib/python3.9/site-packages/wheel/bdist_wheel.py", line 299, in run
      self.run_command('build')
    File "/mnt/home/lgarrison/miniconda3/envs/halotoolstest/lib/python3.9/distutils/cmd.py", line 313, in run_command
      self.distribution.run_command(command)
    File "/mnt/home/lgarrison/miniconda3/envs/halotoolstest/lib/python3.9/distutils/dist.py", line 985, in run_command
      cmd_obj.run()
    File "/mnt/home/lgarrison/miniconda3/envs/halotoolstest/lib/python3.9/distutils/command/build.py", line 135, in run
      self.run_command(cmd_name)
    File "/mnt/home/lgarrison/miniconda3/envs/halotoolstest/lib/python3.9/distutils/cmd.py", line 313, in run_command
      self.distribution.run_command(command)
    File "/mnt/home/lgarrison/miniconda3/envs/halotoolstest/lib/python3.9/distutils/dist.py", line 985, in run_command
      cmd_obj.run()
    File "/tmp/pip-install-1rk9qkn1/halotools_64462846c6914f6da18cc1bf723003b8/.eggs/astropy_helpers-2.0.11-py3.9.egg/astropy_helpers/commands/build_ext.py", line 296, in run
      np_include = get_numpy_include_path()
    File "/tmp/pip-install-1rk9qkn1/halotools_64462846c6914f6da18cc1bf723003b8/.eggs/astropy_helpers-2.0.11-py3.9.egg/astropy_helpers/utils.py", line 89, in get_numpy_include_path
      import numpy
  ModuleNotFoundError: No module named 'numpy'
  ----------------------------------------
  ERROR: Failed building wheel for halotools
  Running setup.py clean for halotools
Failed to build halotools
Installing collected packages: numpy, urllib3, soupsieve, pyerfa, idna, charset-normalizer, certifi, scipy, requests, beautifulsoup4, astropy, halotools
    Running setup.py install for halotools ... -
done
  DEPRECATION: halotools was installed using the legacy 'setup.py install' method, because a wheel could not be built for it. A possible replacement is to fix the wheel build issue reported above. You can find discussion regarding this at https://github.com/pypa/pip/issues/8368.
Successfully installed astropy-4.3.1 beautifulsoup4-4.10.0 certifi-2021.5.30 charset-normalizer-2.0.6 halotools-0.7 idna-3.2 numpy-1.21.2 pyerfa-2.0.0 requests-2.26.0 scipy-1.7.1 soupsieve-2.2.1 urllib3-1.26.7

from halotools.

EiffL avatar EiffL commented on July 17, 2024

Yeah this seems to come from the source tar.gz. You haven't pushed the wheels to pypi yet @aphearin :-) so I plead not guilty

from halotools.

aphearin avatar aphearin commented on July 17, 2024

Ahh, ok, well thanks for confirming the source of the problem @EiffL - I'll push up your wheels to pypi next week then.

from halotools.

tilmantroester avatar tilmantroester commented on July 17, 2024

Removing the line with use_2to3=True in setup.py (https://github.com/astropy/halotools/blob/master/setup.py#L114) seems to fix the installation for newer setuptools versions.

from halotools.

aphearin avatar aphearin commented on July 17, 2024

Thanks for the suggestion @tilmantroester - I just pushed up your suggested fix to #1026.

from halotools.

aphearin avatar aphearin commented on July 17, 2024

I think this should now be resolved after merging in #1026.

from halotools.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.