classy-szfast 0.0.25.post6__tar.gz → 0.0.25.post7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (25) hide show
  1. {classy_szfast-0.0.25.post6 → classy_szfast-0.0.25.post7}/PKG-INFO +1 -1
  2. {classy_szfast-0.0.25.post6 → classy_szfast-0.0.25.post7}/classy_szfast/config.py +1 -1
  3. {classy_szfast-0.0.25.post6 → classy_szfast-0.0.25.post7}/classy_szfast/cosmopower_jax.py +2 -2
  4. {classy_szfast-0.0.25.post6 → classy_szfast-0.0.25.post7}/classy_szfast.egg-info/PKG-INFO +1 -1
  5. {classy_szfast-0.0.25.post6 → classy_szfast-0.0.25.post7}/pyproject.toml +1 -1
  6. {classy_szfast-0.0.25.post6 → classy_szfast-0.0.25.post7}/README.md +0 -0
  7. {classy_szfast-0.0.25.post6 → classy_szfast-0.0.25.post7}/classy_szfast/__init__.py +0 -0
  8. {classy_szfast-0.0.25.post6 → classy_szfast-0.0.25.post7}/classy_szfast/classy_sz.py +0 -0
  9. {classy_szfast-0.0.25.post6 → classy_szfast-0.0.25.post7}/classy_szfast/classy_szfast.py +0 -0
  10. {classy_szfast-0.0.25.post6 → classy_szfast-0.0.25.post7}/classy_szfast/cosmopower.py +0 -0
  11. {classy_szfast-0.0.25.post6 → classy_szfast-0.0.25.post7}/classy_szfast/cosmosis_classy_szfast_interface.py +0 -0
  12. {classy_szfast-0.0.25.post6 → classy_szfast-0.0.25.post7}/classy_szfast/custom_bias/__init__.py +0 -0
  13. {classy_szfast-0.0.25.post6 → classy_szfast-0.0.25.post7}/classy_szfast/custom_bias/custom_bias.py +0 -0
  14. {classy_szfast-0.0.25.post6 → classy_szfast-0.0.25.post7}/classy_szfast/custom_profiles/__init__.py +0 -0
  15. {classy_szfast-0.0.25.post6 → classy_szfast-0.0.25.post7}/classy_szfast/custom_profiles/custom_profiles.py +0 -0
  16. {classy_szfast-0.0.25.post6 → classy_szfast-0.0.25.post7}/classy_szfast/emulators_meta_data.py +0 -0
  17. {classy_szfast-0.0.25.post6 → classy_szfast-0.0.25.post7}/classy_szfast/pks_and_sigmas.py +0 -0
  18. {classy_szfast-0.0.25.post6 → classy_szfast-0.0.25.post7}/classy_szfast/restore_nn.py +0 -0
  19. {classy_szfast-0.0.25.post6 → classy_szfast-0.0.25.post7}/classy_szfast/suppress_warnings.py +0 -0
  20. {classy_szfast-0.0.25.post6 → classy_szfast-0.0.25.post7}/classy_szfast/utils.py +0 -0
  21. {classy_szfast-0.0.25.post6 → classy_szfast-0.0.25.post7}/classy_szfast.egg-info/SOURCES.txt +0 -0
  22. {classy_szfast-0.0.25.post6 → classy_szfast-0.0.25.post7}/classy_szfast.egg-info/dependency_links.txt +0 -0
  23. {classy_szfast-0.0.25.post6 → classy_szfast-0.0.25.post7}/classy_szfast.egg-info/requires.txt +0 -0
  24. {classy_szfast-0.0.25.post6 → classy_szfast-0.0.25.post7}/classy_szfast.egg-info/top_level.txt +0 -0
  25. {classy_szfast-0.0.25.post6 → classy_szfast-0.0.25.post7}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: classy_szfast
3
- Version: 0.0.25.post6
3
+ Version: 0.0.25.post7
4
4
  Summary: The accelerator of the class_sz code from https://github.com/CLASS-SZ
5
5
  Maintainer-email: Boris Bolliet <bb667@cam.ac.uk>
6
6
  License: MIT
@@ -4,7 +4,7 @@ import get_cosmopower_emus
4
4
  import class_sz_data
5
5
 
6
6
  def get_cosmopower_path():
7
- get_cosmopower_emus.set()
7
+ get_cosmopower_emus.set_path()
8
8
  return os.getenv('PATH_TO_CLASS_SZ_DATA')
9
9
 
10
10
  path_to_class_sz_data = get_cosmopower_path()
@@ -22,8 +22,8 @@ cp_s8_nn_jax = {}
22
22
 
23
23
 
24
24
  class CosmoPowerJAX_custom(CPJ):
25
- def __init__(self, *args, **kwargs):
26
- super().__init__(*args, **kwargs)
25
+ def __init__(self, verbose=False, *args, **kwargs):
26
+ super().__init__(verbose=verbose, *args, **kwargs)
27
27
  self.ten_to_predictions = True
28
28
  if 'ten_to_predictions' in kwargs.keys():
29
29
  self.ten_to_predictions = kwargs['ten_to_predictions']
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: classy_szfast
3
- Version: 0.0.25.post6
3
+ Version: 0.0.25.post7
4
4
  Summary: The accelerator of the class_sz code from https://github.com/CLASS-SZ
5
5
  Maintainer-email: Boris Bolliet <bb667@cam.ac.uk>
6
6
  License: MIT
@@ -3,7 +3,7 @@ requires = ["setuptools", "wheel"]
3
3
  build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
- version = "0.0.25.post6"
6
+ version = "0.0.25.post7"
7
7
  license = { text = "MIT" }
8
8
  name = "classy_szfast"
9
9
  maintainers = [{name = "Boris Bolliet",email="bb667@cam.ac.uk"}]