foscat 3.7.2__tar.gz → 3.7.3__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 (31) hide show
  1. {foscat-3.7.2/src/foscat.egg-info → foscat-3.7.3}/PKG-INFO +1 -2
  2. {foscat-3.7.2 → foscat-3.7.3}/pyproject.toml +1 -2
  3. {foscat-3.7.2 → foscat-3.7.3}/src/foscat/FoCUS.py +1 -1
  4. {foscat-3.7.2 → foscat-3.7.3/src/foscat.egg-info}/PKG-INFO +1 -2
  5. {foscat-3.7.2 → foscat-3.7.3}/src/foscat.egg-info/requires.txt +0 -1
  6. {foscat-3.7.2 → foscat-3.7.3}/LICENSE +0 -0
  7. {foscat-3.7.2 → foscat-3.7.3}/README.md +0 -0
  8. {foscat-3.7.2 → foscat-3.7.3}/setup.cfg +0 -0
  9. {foscat-3.7.2 → foscat-3.7.3}/src/foscat/CNN.py +0 -0
  10. {foscat-3.7.2 → foscat-3.7.3}/src/foscat/CircSpline.py +0 -0
  11. {foscat-3.7.2 → foscat-3.7.3}/src/foscat/GCNN.py +0 -0
  12. {foscat-3.7.2 → foscat-3.7.3}/src/foscat/Softmax.py +0 -0
  13. {foscat-3.7.2 → foscat-3.7.3}/src/foscat/Spline1D.py +0 -0
  14. {foscat-3.7.2 → foscat-3.7.3}/src/foscat/Synthesis.py +0 -0
  15. {foscat-3.7.2 → foscat-3.7.3}/src/foscat/__init__.py +0 -0
  16. {foscat-3.7.2 → foscat-3.7.3}/src/foscat/alm.py +0 -0
  17. {foscat-3.7.2 → foscat-3.7.3}/src/foscat/backend.py +0 -0
  18. {foscat-3.7.2 → foscat-3.7.3}/src/foscat/backend_tens.py +0 -0
  19. {foscat-3.7.2 → foscat-3.7.3}/src/foscat/loss_backend_tens.py +0 -0
  20. {foscat-3.7.2 → foscat-3.7.3}/src/foscat/loss_backend_torch.py +0 -0
  21. {foscat-3.7.2 → foscat-3.7.3}/src/foscat/scat.py +0 -0
  22. {foscat-3.7.2 → foscat-3.7.3}/src/foscat/scat1D.py +0 -0
  23. {foscat-3.7.2 → foscat-3.7.3}/src/foscat/scat2D.py +0 -0
  24. {foscat-3.7.2 → foscat-3.7.3}/src/foscat/scat_cov.py +0 -0
  25. {foscat-3.7.2 → foscat-3.7.3}/src/foscat/scat_cov1D.py +0 -0
  26. {foscat-3.7.2 → foscat-3.7.3}/src/foscat/scat_cov2D.py +0 -0
  27. {foscat-3.7.2 → foscat-3.7.3}/src/foscat/scat_cov_map.py +0 -0
  28. {foscat-3.7.2 → foscat-3.7.3}/src/foscat/scat_cov_map2D.py +0 -0
  29. {foscat-3.7.2 → foscat-3.7.3}/src/foscat.egg-info/SOURCES.txt +0 -0
  30. {foscat-3.7.2 → foscat-3.7.3}/src/foscat.egg-info/dependency_links.txt +0 -0
  31. {foscat-3.7.2 → foscat-3.7.3}/src/foscat.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: foscat
3
- Version: 3.7.2
3
+ Version: 3.7.3
4
4
  Summary: Generate synthetic Healpix or 2D data using Cross Scattering Transform
5
5
  Author-email: Jean-Marc DELOUIS <jean.marc.delouis@ifremer.fr>
6
6
  Maintainer-email: Theo Foulquier <theo.foulquier@ifremer.fr>
@@ -23,7 +23,6 @@ Requires-Dist: imageio
23
23
  Requires-Dist: imagecodecs
24
24
  Requires-Dist: matplotlib
25
25
  Requires-Dist: numpy
26
- Requires-Dist: tensorflow
27
26
  Requires-Dist: healpy
28
27
  Requires-Dist: spherical
29
28
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "foscat"
3
- version = "3.7.2"
3
+ version = "3.7.3"
4
4
  description = "Generate synthetic Healpix or 2D data using Cross Scattering Transform"
5
5
  readme = "README.md"
6
6
  license = { text = "BSD-3-Clause" }
@@ -17,7 +17,6 @@ dependencies = [
17
17
  "imagecodecs",
18
18
  "matplotlib",
19
19
  "numpy",
20
- "tensorflow",
21
20
  "healpy",
22
21
  "spherical",
23
22
  ]
@@ -37,7 +37,7 @@ class FoCUS:
37
37
  mpi_rank=0,
38
38
  ):
39
39
 
40
- self.__version__ = "3.7.2"
40
+ self.__version__ = "3.7.3"
41
41
  # P00 coeff for normalization for scat_cov
42
42
  self.TMPFILE_VERSION = TMPFILE_VERSION
43
43
  self.P1_dic = None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: foscat
3
- Version: 3.7.2
3
+ Version: 3.7.3
4
4
  Summary: Generate synthetic Healpix or 2D data using Cross Scattering Transform
5
5
  Author-email: Jean-Marc DELOUIS <jean.marc.delouis@ifremer.fr>
6
6
  Maintainer-email: Theo Foulquier <theo.foulquier@ifremer.fr>
@@ -23,7 +23,6 @@ Requires-Dist: imageio
23
23
  Requires-Dist: imagecodecs
24
24
  Requires-Dist: matplotlib
25
25
  Requires-Dist: numpy
26
- Requires-Dist: tensorflow
27
26
  Requires-Dist: healpy
28
27
  Requires-Dist: spherical
29
28
 
@@ -2,6 +2,5 @@ imageio
2
2
  imagecodecs
3
3
  matplotlib
4
4
  numpy
5
- tensorflow
6
5
  healpy
7
6
  spherical
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes