sarapy 1.1.4__tar.gz → 1.1.5__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 (30) hide show
  1. {sarapy-1.1.4/sarapy.egg-info → sarapy-1.1.5}/PKG-INFO +6 -2
  2. {sarapy-1.1.4 → sarapy-1.1.5}/README.md +5 -1
  3. {sarapy-1.1.4 → sarapy-1.1.5}/pyproject.toml +1 -1
  4. {sarapy-1.1.4 → sarapy-1.1.5}/sarapy/dataProcessing/OpsProcessor.py +0 -1
  5. {sarapy-1.1.4 → sarapy-1.1.5}/sarapy/version.py +1 -1
  6. {sarapy-1.1.4 → sarapy-1.1.5/sarapy.egg-info}/PKG-INFO +6 -2
  7. {sarapy-1.1.4 → sarapy-1.1.5}/LICENCE +0 -0
  8. {sarapy-1.1.4 → sarapy-1.1.5}/sarapy/__init__.py +0 -0
  9. {sarapy-1.1.4 → sarapy-1.1.5}/sarapy/dataProcessing/GeoProcessor.py +0 -0
  10. {sarapy-1.1.4 → sarapy-1.1.5}/sarapy/dataProcessing/TLMSensorDataProcessor.py +0 -0
  11. {sarapy-1.1.4 → sarapy-1.1.5}/sarapy/dataProcessing/TimeSeriesProcessor.py +0 -0
  12. {sarapy-1.1.4 → sarapy-1.1.5}/sarapy/dataProcessing/__init__.py +0 -0
  13. {sarapy-1.1.4 → sarapy-1.1.5}/sarapy/mlProcessors/PlantinClassifier.py +0 -0
  14. {sarapy-1.1.4 → sarapy-1.1.5}/sarapy/mlProcessors/PlantinFMCreator.py +0 -0
  15. {sarapy-1.1.4 → sarapy-1.1.5}/sarapy/mlProcessors/__init__.py +0 -0
  16. {sarapy-1.1.4 → sarapy-1.1.5}/sarapy/preprocessing/DistancesImputer.py +0 -0
  17. {sarapy-1.1.4 → sarapy-1.1.5}/sarapy/preprocessing/FertilizerImputer.py +0 -0
  18. {sarapy-1.1.4 → sarapy-1.1.5}/sarapy/preprocessing/TransformInputData.py +0 -0
  19. {sarapy-1.1.4 → sarapy-1.1.5}/sarapy/preprocessing/TransformToOutputData.py +0 -0
  20. {sarapy-1.1.4 → sarapy-1.1.5}/sarapy/preprocessing/__init__.py +0 -0
  21. {sarapy-1.1.4 → sarapy-1.1.5}/sarapy/utils/__init__.py +0 -0
  22. {sarapy-1.1.4 → sarapy-1.1.5}/sarapy/utils/amg_decoder.py +0 -0
  23. {sarapy-1.1.4 → sarapy-1.1.5}/sarapy/utils/amg_ppk.py +0 -0
  24. {sarapy-1.1.4 → sarapy-1.1.5}/sarapy/utils/getRawOperations.py +0 -0
  25. {sarapy-1.1.4 → sarapy-1.1.5}/sarapy.egg-info/SOURCES.txt +0 -0
  26. {sarapy-1.1.4 → sarapy-1.1.5}/sarapy.egg-info/dependency_links.txt +0 -0
  27. {sarapy-1.1.4 → sarapy-1.1.5}/sarapy.egg-info/requires.txt +0 -0
  28. {sarapy-1.1.4 → sarapy-1.1.5}/sarapy.egg-info/top_level.txt +0 -0
  29. {sarapy-1.1.4 → sarapy-1.1.5}/setup.cfg +0 -0
  30. {sarapy-1.1.4 → sarapy-1.1.5}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: sarapy
3
- Version: 1.1.4
3
+ Version: 1.1.5
4
4
  Home-page: https://github.com/lucasbaldezzari/sarapy
5
5
  Author: Lucas Baldezzari
6
6
  Author-email: Lucas Baldezzari <lmbaldezzari@gmail.com>
@@ -17,7 +17,11 @@ Requires-Dist: geopy
17
17
 
18
18
  # SARAPY
19
19
 
20
- Library for processing SARAPICO project metadata of _AMG_.
20
+ Library for processing SARAPICO project metadata of _AMG SA_.
21
+
22
+ #### Version 1.1.5
23
+
24
+ - Se quita print de función update.
21
25
 
22
26
  #### Version 1.1.4
23
27
 
@@ -1,6 +1,10 @@
1
1
  # SARAPY
2
2
 
3
- Library for processing SARAPICO project metadata of _AMG_.
3
+ Library for processing SARAPICO project metadata of _AMG SA_.
4
+
5
+ #### Version 1.1.5
6
+
7
+ - Se quita print de función update.
4
8
 
5
9
  #### Version 1.1.4
6
10
 
@@ -1,7 +1,7 @@
1
1
  [project]
2
2
  name = "sarapy"
3
3
 
4
- version = "1.1.4"
4
+ version = "1.1.5"
5
5
  authors = [
6
6
  {name = "Lucas Baldezzari", email = "lmbaldezzari@gmail.com"},]
7
7
  maintainers = [
@@ -299,7 +299,6 @@ class OpsProcessor():
299
299
  ##me quedo con los índices donde MODEFlag es igual a 1
300
300
  mask = self.plantinFMCreator.tlmExtracted[:,self.plantinFMCreator.tlmdeDP["MODEFlag"]]==1
301
301
  classified_ops[mask] = 0 ##hardcodeo las operaciones que hayan sido clasificadas como 1
302
- print(sum(mask))
303
302
  return classified_ops
304
303
 
305
304
  @property
@@ -1,2 +1,2 @@
1
1
  ## Version of the package
2
- __version__ = "1.1.4"
2
+ __version__ = "1.1.5"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: sarapy
3
- Version: 1.1.4
3
+ Version: 1.1.5
4
4
  Home-page: https://github.com/lucasbaldezzari/sarapy
5
5
  Author: Lucas Baldezzari
6
6
  Author-email: Lucas Baldezzari <lmbaldezzari@gmail.com>
@@ -17,7 +17,11 @@ Requires-Dist: geopy
17
17
 
18
18
  # SARAPY
19
19
 
20
- Library for processing SARAPICO project metadata of _AMG_.
20
+ Library for processing SARAPICO project metadata of _AMG SA_.
21
+
22
+ #### Version 1.1.5
23
+
24
+ - Se quita print de función update.
21
25
 
22
26
  #### Version 1.1.4
23
27
 
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes