hopeit.dataframes 0.27.0__tar.gz → 0.28.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.
Files changed (27) hide show
  1. {hopeit_dataframes-0.27.0 → hopeit_dataframes-0.28.0}/PKG-INFO +4 -3
  2. {hopeit_dataframes-0.27.0 → hopeit_dataframes-0.28.0}/pyproject.toml +4 -3
  3. {hopeit_dataframes-0.27.0 → hopeit_dataframes-0.28.0}/src/hopeit/dataframes/serialization/files.py +1 -1
  4. {hopeit_dataframes-0.27.0 → hopeit_dataframes-0.28.0}/src/hopeit.dataframes.egg-info/PKG-INFO +4 -3
  5. hopeit_dataframes-0.28.0/src/hopeit.dataframes.egg-info/requires.txt +5 -0
  6. hopeit_dataframes-0.27.0/src/hopeit.dataframes.egg-info/requires.txt +0 -5
  7. {hopeit_dataframes-0.27.0 → hopeit_dataframes-0.28.0}/README.md +0 -0
  8. {hopeit_dataframes-0.27.0 → hopeit_dataframes-0.28.0}/setup.cfg +0 -0
  9. {hopeit_dataframes-0.27.0 → hopeit_dataframes-0.28.0}/src/hopeit/dataframes/__init__.py +0 -0
  10. {hopeit_dataframes-0.27.0 → hopeit_dataframes-0.28.0}/src/hopeit/dataframes/datablocks.py +0 -0
  11. {hopeit_dataframes-0.27.0 → hopeit_dataframes-0.28.0}/src/hopeit/dataframes/dataframe.py +0 -0
  12. {hopeit_dataframes-0.27.0 → hopeit_dataframes-0.28.0}/src/hopeit/dataframes/polars/__init__.py +0 -0
  13. {hopeit_dataframes-0.27.0 → hopeit_dataframes-0.28.0}/src/hopeit/dataframes/polars/py.typed +0 -0
  14. {hopeit_dataframes-0.27.0 → hopeit_dataframes-0.28.0}/src/hopeit/dataframes/py.typed +0 -0
  15. {hopeit_dataframes-0.27.0 → hopeit_dataframes-0.28.0}/src/hopeit/dataframes/serialization/__init__.py +0 -0
  16. {hopeit_dataframes-0.27.0 → hopeit_dataframes-0.28.0}/src/hopeit/dataframes/serialization/dataset.py +0 -0
  17. {hopeit_dataframes-0.27.0 → hopeit_dataframes-0.28.0}/src/hopeit/dataframes/serialization/protocol.py +0 -0
  18. {hopeit_dataframes-0.27.0 → hopeit_dataframes-0.28.0}/src/hopeit/dataframes/serialization/py.typed +0 -0
  19. {hopeit_dataframes-0.27.0 → hopeit_dataframes-0.28.0}/src/hopeit/dataframes/serialization/settings.py +0 -0
  20. {hopeit_dataframes-0.27.0 → hopeit_dataframes-0.28.0}/src/hopeit/dataframes/setup/__init__.py +0 -0
  21. {hopeit_dataframes-0.27.0 → hopeit_dataframes-0.28.0}/src/hopeit/dataframes/setup/dataframes.py +0 -0
  22. {hopeit_dataframes-0.27.0 → hopeit_dataframes-0.28.0}/src/hopeit/dataframes/setup/py.typed +0 -0
  23. {hopeit_dataframes-0.27.0 → hopeit_dataframes-0.28.0}/src/hopeit/dataframes/setup/register_database.py +0 -0
  24. {hopeit_dataframes-0.27.0 → hopeit_dataframes-0.28.0}/src/hopeit/dataframes/setup/registry.py +0 -0
  25. {hopeit_dataframes-0.27.0 → hopeit_dataframes-0.28.0}/src/hopeit.dataframes.egg-info/SOURCES.txt +0 -0
  26. {hopeit_dataframes-0.27.0 → hopeit_dataframes-0.28.0}/src/hopeit.dataframes.egg-info/dependency_links.txt +0 -0
  27. {hopeit_dataframes-0.27.0 → hopeit_dataframes-0.28.0}/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.27.0
3
+ Version: 0.28.0
4
4
  Summary: Hopeit Engine Dataframes for Polars
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
@@ -16,6 +16,7 @@ Classifier: Programming Language :: Python :: 3.10
16
16
  Classifier: Programming Language :: Python :: 3.11
17
17
  Classifier: Programming Language :: Python :: 3.12
18
18
  Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Programming Language :: Python :: 3.14
19
20
  Classifier: Development Status :: 5 - Production/Stable
20
21
  Classifier: Operating System :: POSIX :: Linux
21
22
  Classifier: Operating System :: MacOS :: MacOS X
@@ -24,8 +25,8 @@ Classifier: Topic :: Internet :: WWW/HTTP
24
25
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
25
26
  Classifier: Framework :: AsyncIO
26
27
  Description-Content-Type: text/markdown
27
- Requires-Dist: hopeit.engine>=0.27.0
28
- Requires-Dist: hopeit.fs-storage>=0.27.0
28
+ Requires-Dist: hopeit.engine>=0.28.0
29
+ Requires-Dist: hopeit.fs-storage>=0.28.0
29
30
  Provides-Extra: polars
30
31
  Requires-Dist: polars>=1.32.0; extra == "polars"
31
32
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "hopeit.dataframes"
7
- version = "0.27.0"
7
+ version = "0.28.0"
8
8
 
9
9
  description = "Hopeit Engine Dataframes for Polars"
10
10
  dynamic = ["readme"]
@@ -23,6 +23,7 @@ classifiers = [
23
23
  "Programming Language :: Python :: 3.11",
24
24
  "Programming Language :: Python :: 3.12",
25
25
  "Programming Language :: Python :: 3.13",
26
+ "Programming Language :: Python :: 3.14",
26
27
  "Development Status :: 5 - Production/Stable",
27
28
  "Operating System :: POSIX :: Linux",
28
29
  "Operating System :: MacOS :: MacOS X",
@@ -33,8 +34,8 @@ classifiers = [
33
34
  ]
34
35
 
35
36
  dependencies = [
36
- "hopeit.engine>=0.27.0",
37
- "hopeit.fs-storage>=0.27.0",
37
+ "hopeit.engine>=0.28.0",
38
+ "hopeit.fs-storage>=0.28.0",
38
39
  ]
39
40
 
40
41
  [project.optional-dependencies]
@@ -112,7 +112,7 @@ class DatasetFileStorage(Generic[DataFrameT]):
112
112
  buf = io.BytesIO()
113
113
  df.write_parquet(
114
114
  buf,
115
- compression=self.storage_settings.compression or "zstd",
115
+ compression=self.storage_settings.compression or "zstd", # type: ignore[arg-type]
116
116
  compression_level=self.storage_settings.compression_level,
117
117
  )
118
118
  os.makedirs(path, exist_ok=True)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hopeit.dataframes
3
- Version: 0.27.0
3
+ Version: 0.28.0
4
4
  Summary: Hopeit Engine Dataframes for Polars
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
@@ -16,6 +16,7 @@ Classifier: Programming Language :: Python :: 3.10
16
16
  Classifier: Programming Language :: Python :: 3.11
17
17
  Classifier: Programming Language :: Python :: 3.12
18
18
  Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Programming Language :: Python :: 3.14
19
20
  Classifier: Development Status :: 5 - Production/Stable
20
21
  Classifier: Operating System :: POSIX :: Linux
21
22
  Classifier: Operating System :: MacOS :: MacOS X
@@ -24,8 +25,8 @@ Classifier: Topic :: Internet :: WWW/HTTP
24
25
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
25
26
  Classifier: Framework :: AsyncIO
26
27
  Description-Content-Type: text/markdown
27
- Requires-Dist: hopeit.engine>=0.27.0
28
- Requires-Dist: hopeit.fs-storage>=0.27.0
28
+ Requires-Dist: hopeit.engine>=0.28.0
29
+ Requires-Dist: hopeit.fs-storage>=0.28.0
29
30
  Provides-Extra: polars
30
31
  Requires-Dist: polars>=1.32.0; extra == "polars"
31
32
 
@@ -0,0 +1,5 @@
1
+ hopeit.engine>=0.28.0
2
+ hopeit.fs-storage>=0.28.0
3
+
4
+ [polars]
5
+ polars>=1.32.0
@@ -1,5 +0,0 @@
1
- hopeit.engine>=0.27.0
2
- hopeit.fs-storage>=0.27.0
3
-
4
- [polars]
5
- polars>=1.32.0