ler 0.3.9__tar.gz → 0.4.0__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.

Potentially problematic release.


This version of ler might be problematic. Click here for more details.

Files changed (30) hide show
  1. {ler-0.3.9 → ler-0.4.0}/PKG-INFO +1 -1
  2. {ler-0.3.9 → ler-0.4.0}/ler/__init__.py +1 -1
  3. {ler-0.3.9 → ler-0.4.0}/ler.egg-info/PKG-INFO +1 -1
  4. {ler-0.3.9 → ler-0.4.0}/ler.egg-info/SOURCES.txt +0 -1
  5. {ler-0.3.9 → ler-0.4.0}/ler.egg-info/requires.txt +2 -2
  6. {ler-0.3.9 → ler-0.4.0}/setup.py +3 -3
  7. ler-0.3.9/ler/rates/ler copy.py +0 -2097
  8. {ler-0.3.9 → ler-0.4.0}/LICENSE +0 -0
  9. {ler-0.3.9 → ler-0.4.0}/README.md +0 -0
  10. {ler-0.3.9 → ler-0.4.0}/ler/gw_source_population/__init__.py +0 -0
  11. {ler-0.3.9 → ler-0.4.0}/ler/gw_source_population/cbc_source_parameter_distribution.py +0 -0
  12. {ler-0.3.9 → ler-0.4.0}/ler/gw_source_population/cbc_source_redshift_distribution.py +0 -0
  13. {ler-0.3.9 → ler-0.4.0}/ler/gw_source_population/jit_functions.py +0 -0
  14. {ler-0.3.9 → ler-0.4.0}/ler/image_properties/__init__.py +0 -0
  15. {ler-0.3.9 → ler-0.4.0}/ler/image_properties/image_properties.py +0 -0
  16. {ler-0.3.9 → ler-0.4.0}/ler/image_properties/multiprocessing_routine.py +0 -0
  17. {ler-0.3.9 → ler-0.4.0}/ler/lens_galaxy_population/__init__.py +0 -0
  18. {ler-0.3.9 → ler-0.4.0}/ler/lens_galaxy_population/jit_functions.py +0 -0
  19. {ler-0.3.9 → ler-0.4.0}/ler/lens_galaxy_population/lens_galaxy_parameter_distribution.py +0 -0
  20. {ler-0.3.9 → ler-0.4.0}/ler/lens_galaxy_population/mp.py +0 -0
  21. {ler-0.3.9 → ler-0.4.0}/ler/lens_galaxy_population/optical_depth.py +0 -0
  22. {ler-0.3.9 → ler-0.4.0}/ler/rates/__init__.py +0 -0
  23. {ler-0.3.9 → ler-0.4.0}/ler/rates/gwrates.py +0 -0
  24. {ler-0.3.9 → ler-0.4.0}/ler/rates/ler.py +0 -0
  25. {ler-0.3.9 → ler-0.4.0}/ler/utils/__init__.py +0 -0
  26. {ler-0.3.9 → ler-0.4.0}/ler/utils/plots.py +0 -0
  27. {ler-0.3.9 → ler-0.4.0}/ler/utils/utils.py +0 -0
  28. {ler-0.3.9 → ler-0.4.0}/ler.egg-info/dependency_links.txt +0 -0
  29. {ler-0.3.9 → ler-0.4.0}/ler.egg-info/top_level.txt +0 -0
  30. {ler-0.3.9 → ler-0.4.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ler
3
- Version: 0.3.9
3
+ Version: 0.4.0
4
4
  Summary: Gravitational waves Lensing Rates
5
5
  Home-page: https://github.com/hemantaph/ler
6
6
  Author: Hemantakumar
@@ -14,7 +14,7 @@ except RuntimeError:
14
14
  __author__ = 'hemanta_ph <hemantaphurailatpam@gmail.com>'
15
15
 
16
16
  # The version as used in the setup.py
17
- __version__ = "0.3.9"
17
+ __version__ = "0.4.0"
18
18
 
19
19
  # add __file__
20
20
  import os
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ler
3
- Version: 0.3.9
3
+ Version: 0.4.0
4
4
  Summary: Gravitational waves Lensing Rates
5
5
  Home-page: https://github.com/hemantaph/ler
6
6
  Author: Hemantakumar
@@ -21,7 +21,6 @@ ler/lens_galaxy_population/mp.py
21
21
  ler/lens_galaxy_population/optical_depth.py
22
22
  ler/rates/__init__.py
23
23
  ler/rates/gwrates.py
24
- ler/rates/ler copy.py
25
24
  ler/rates/ler.py
26
25
  ler/utils/__init__.py
27
26
  ler/utils/plots.py
@@ -1,10 +1,10 @@
1
1
  setuptools>=65.5.0
2
2
  matplotlib>=3.4.2
3
- pycbc>=1.18.0
3
+ pycbc>=2.0.4
4
4
  numpy>=1.18
5
5
  numba>=0.57.1
6
6
  bilby>=1.0.2
7
- gwsnr>=0.2.0
7
+ gwsnr>=0.3.2
8
8
  scipy<1.14.0
9
9
  lenstronomy>=1.10.4
10
10
  astropy>=5.1
@@ -13,7 +13,7 @@ if python_version < (3, 10):
13
13
 
14
14
  setup(
15
15
  name="ler",
16
- version="0.3.9",
16
+ version="0.4.0",
17
17
  description="Gravitational waves Lensing Rates",
18
18
  long_description=long_description,
19
19
  long_description_content_type='text/markdown',
@@ -26,11 +26,11 @@ setup(
26
26
  install_requires=[
27
27
  "setuptools>=65.5.0",
28
28
  "matplotlib>=3.4.2",
29
- "pycbc>=1.18.0",
29
+ "pycbc>=2.0.4",
30
30
  "numpy>=1.18",
31
31
  "numba>=0.57.1",
32
32
  "bilby>=1.0.2",
33
- "gwsnr>=0.2.0",
33
+ "gwsnr>=0.3.2",
34
34
  "scipy<1.14.0",
35
35
  "lenstronomy>=1.10.4",
36
36
  "astropy>=5.1",