hopeit.dataframes 0.26.2__tar.gz → 0.26.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 (25) hide show
  1. {hopeit_dataframes-0.26.2 → hopeit_dataframes-0.26.3}/PKG-INFO +7 -6
  2. {hopeit_dataframes-0.26.2 → hopeit_dataframes-0.26.3}/pyproject.toml +13 -9
  3. {hopeit_dataframes-0.26.2 → hopeit_dataframes-0.26.3}/src/hopeit.dataframes.egg-info/PKG-INFO +7 -6
  4. hopeit_dataframes-0.26.3/src/hopeit.dataframes.egg-info/requires.txt +7 -0
  5. hopeit_dataframes-0.26.2/src/hopeit.dataframes.egg-info/requires.txt +0 -5
  6. {hopeit_dataframes-0.26.2 → hopeit_dataframes-0.26.3}/README.md +0 -0
  7. {hopeit_dataframes-0.26.2 → hopeit_dataframes-0.26.3}/setup.cfg +0 -0
  8. {hopeit_dataframes-0.26.2 → hopeit_dataframes-0.26.3}/src/hopeit/dataframes/__init__.py +0 -0
  9. {hopeit_dataframes-0.26.2 → hopeit_dataframes-0.26.3}/src/hopeit/dataframes/datablocks.py +0 -0
  10. {hopeit_dataframes-0.26.2 → hopeit_dataframes-0.26.3}/src/hopeit/dataframes/dataframe.py +0 -0
  11. {hopeit_dataframes-0.26.2 → hopeit_dataframes-0.26.3}/src/hopeit/dataframes/py.typed +0 -0
  12. {hopeit_dataframes-0.26.2 → hopeit_dataframes-0.26.3}/src/hopeit/dataframes/serialization/__init__.py +0 -0
  13. {hopeit_dataframes-0.26.2 → hopeit_dataframes-0.26.3}/src/hopeit/dataframes/serialization/dataset.py +0 -0
  14. {hopeit_dataframes-0.26.2 → hopeit_dataframes-0.26.3}/src/hopeit/dataframes/serialization/files.py +0 -0
  15. {hopeit_dataframes-0.26.2 → hopeit_dataframes-0.26.3}/src/hopeit/dataframes/serialization/protocol.py +0 -0
  16. {hopeit_dataframes-0.26.2 → hopeit_dataframes-0.26.3}/src/hopeit/dataframes/serialization/py.typed +0 -0
  17. {hopeit_dataframes-0.26.2 → hopeit_dataframes-0.26.3}/src/hopeit/dataframes/serialization/settings.py +0 -0
  18. {hopeit_dataframes-0.26.2 → hopeit_dataframes-0.26.3}/src/hopeit/dataframes/setup/__init__.py +0 -0
  19. {hopeit_dataframes-0.26.2 → hopeit_dataframes-0.26.3}/src/hopeit/dataframes/setup/dataframes.py +0 -0
  20. {hopeit_dataframes-0.26.2 → hopeit_dataframes-0.26.3}/src/hopeit/dataframes/setup/py.typed +0 -0
  21. {hopeit_dataframes-0.26.2 → hopeit_dataframes-0.26.3}/src/hopeit/dataframes/setup/register_database.py +0 -0
  22. {hopeit_dataframes-0.26.2 → hopeit_dataframes-0.26.3}/src/hopeit/dataframes/setup/registry.py +0 -0
  23. {hopeit_dataframes-0.26.2 → hopeit_dataframes-0.26.3}/src/hopeit.dataframes.egg-info/SOURCES.txt +0 -0
  24. {hopeit_dataframes-0.26.2 → hopeit_dataframes-0.26.3}/src/hopeit.dataframes.egg-info/dependency_links.txt +0 -0
  25. {hopeit_dataframes-0.26.2 → hopeit_dataframes-0.26.3}/src/hopeit.dataframes.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hopeit.dataframes
3
- Version: 0.26.2
3
+ Version: 0.26.3
4
4
  Summary: Hopeit Engine Dataframes for Pandas
5
5
  Author-email: Leo Smerling & Pablo Canto <contact@hopeit.com.ar>, Leo Smerling <contact@hopeit.com.ar>, Pablo Canto <contact@hopeit.com.ar>
6
6
  License: Apache 2
@@ -24,11 +24,12 @@ Classifier: Topic :: Internet :: WWW/HTTP
24
24
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
25
25
  Classifier: Framework :: AsyncIO
26
26
  Description-Content-Type: text/markdown
27
- Requires-Dist: hopeit.engine>=0.26.2
28
- Requires-Dist: hopeit.fs-storage>=0.26.2
29
- Requires-Dist: pandas>=2.2.3
30
- Requires-Dist: pyarrow>=19.0.1
31
- Requires-Dist: numpy>=1.26.4
27
+ Requires-Dist: hopeit.engine>=0.26.3
28
+ Requires-Dist: hopeit.fs-storage>=0.26.3
29
+ Provides-Extra: pandas
30
+ Requires-Dist: pandas>=2.2.3; extra == "pandas"
31
+ Requires-Dist: pyarrow>=19.0.1; extra == "pandas"
32
+ Requires-Dist: numpy>=1.26.4; extra == "pandas"
32
33
 
33
34
  # hopeit.engine dataframes plugin
34
35
 
@@ -4,19 +4,11 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "hopeit.dataframes"
7
- version = "0.26.2"
7
+ version = "0.26.3"
8
8
 
9
9
  description = "Hopeit Engine Dataframes for Pandas"
10
10
  dynamic = ["readme"]
11
11
 
12
- dependencies = [
13
- "hopeit.engine>=0.26.2",
14
- "hopeit.fs-storage>=0.26.2",
15
- "pandas>=2.2.3",
16
- "pyarrow>=19.0.1",
17
- "numpy>=1.26.4"
18
- ]
19
-
20
12
  license = { text = "Apache 2" }
21
13
  authors = [
22
14
  { name = "Leo Smerling & Pablo Canto", email = "contact@hopeit.com.ar" },
@@ -40,6 +32,18 @@ classifiers = [
40
32
  "Framework :: AsyncIO",
41
33
  ]
42
34
 
35
+ dependencies = [
36
+ "hopeit.engine>=0.26.3",
37
+ "hopeit.fs-storage>=0.26.3"
38
+ ]
39
+
40
+ [project.optional-dependencies]
41
+ pandas = [
42
+ "pandas>=2.2.3",
43
+ "pyarrow>=19.0.1",
44
+ "numpy>=1.26.4"
45
+ ]
46
+
43
47
  [project.urls]
44
48
  "Homepage" = "https://github.com/hopeit-git/hopeit.engine"
45
49
  "CI: GitHub Actions" = "https://github.com/hopeit-git/hopeit.engine/actions?query=workflow"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hopeit.dataframes
3
- Version: 0.26.2
3
+ Version: 0.26.3
4
4
  Summary: Hopeit Engine Dataframes for Pandas
5
5
  Author-email: Leo Smerling & Pablo Canto <contact@hopeit.com.ar>, Leo Smerling <contact@hopeit.com.ar>, Pablo Canto <contact@hopeit.com.ar>
6
6
  License: Apache 2
@@ -24,11 +24,12 @@ Classifier: Topic :: Internet :: WWW/HTTP
24
24
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
25
25
  Classifier: Framework :: AsyncIO
26
26
  Description-Content-Type: text/markdown
27
- Requires-Dist: hopeit.engine>=0.26.2
28
- Requires-Dist: hopeit.fs-storage>=0.26.2
29
- Requires-Dist: pandas>=2.2.3
30
- Requires-Dist: pyarrow>=19.0.1
31
- Requires-Dist: numpy>=1.26.4
27
+ Requires-Dist: hopeit.engine>=0.26.3
28
+ Requires-Dist: hopeit.fs-storage>=0.26.3
29
+ Provides-Extra: pandas
30
+ Requires-Dist: pandas>=2.2.3; extra == "pandas"
31
+ Requires-Dist: pyarrow>=19.0.1; extra == "pandas"
32
+ Requires-Dist: numpy>=1.26.4; extra == "pandas"
32
33
 
33
34
  # hopeit.engine dataframes plugin
34
35
 
@@ -0,0 +1,7 @@
1
+ hopeit.engine>=0.26.3
2
+ hopeit.fs-storage>=0.26.3
3
+
4
+ [pandas]
5
+ pandas>=2.2.3
6
+ pyarrow>=19.0.1
7
+ numpy>=1.26.4
@@ -1,5 +0,0 @@
1
- hopeit.engine>=0.26.2
2
- hopeit.fs-storage>=0.26.2
3
- pandas>=2.2.3
4
- pyarrow>=19.0.1
5
- numpy>=1.26.4