microdf-python 1.3.6__py3-none-any.whl → 1.3.7__py3-none-any.whl
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.
- microdf/__init__.py +9 -1
- microdf/tests/test_version_metadata.py +8 -0
- {microdf_python-1.3.6.dist-info → microdf_python-1.3.7.dist-info}/METADATA +2 -2
- {microdf_python-1.3.6.dist-info → microdf_python-1.3.7.dist-info}/RECORD +7 -6
- {microdf_python-1.3.6.dist-info → microdf_python-1.3.7.dist-info}/WHEEL +0 -0
- {microdf_python-1.3.6.dist-info → microdf_python-1.3.7.dist-info}/licenses/LICENSE +0 -0
- {microdf_python-1.3.6.dist-info → microdf_python-1.3.7.dist-info}/top_level.txt +0 -0
microdf/__init__.py
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
|
+
from importlib.metadata import PackageNotFoundError, version
|
|
2
|
+
|
|
1
3
|
from .microdataframe import MicroDataFrame, MicroDataFrameGroupBy
|
|
2
4
|
from .microseries import MicroSeries, MicroSeriesGroupBy
|
|
3
5
|
|
|
4
6
|
name = "microdf"
|
|
5
|
-
|
|
7
|
+
|
|
8
|
+
# Read the version from package metadata so it can't drift from
|
|
9
|
+
# pyproject.toml (the automated bump only touches pyproject).
|
|
10
|
+
try:
|
|
11
|
+
__version__ = version("microdf-python")
|
|
12
|
+
except PackageNotFoundError: # pragma: no cover - running from a source tree
|
|
13
|
+
__version__ = "unknown"
|
|
6
14
|
|
|
7
15
|
__all__ = [
|
|
8
16
|
# microseries.py
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: microdf-python
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.7
|
|
4
4
|
Summary: Weighted pandas DataFrames and Series for survey microdata
|
|
5
5
|
Author-email: Max Ghenis <max@policyengine.org>
|
|
6
6
|
License: MIT
|
|
@@ -20,7 +20,7 @@ Requires-Dist: towncrier>=24.8.0; extra == "dev"
|
|
|
20
20
|
Dynamic: license-file
|
|
21
21
|
|
|
22
22
|
[](https://github.com/PolicyEngine/microdf/actions)
|
|
23
|
-
[](https://codecov.io/gh/PolicyEngine/microdf)
|
|
24
24
|
|
|
25
25
|
# microdf
|
|
26
26
|
Weighted pandas DataFrames and Series for survey microdata analysis.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
microdf/__init__.py,sha256=
|
|
1
|
+
microdf/__init__.py,sha256=sddmTcTZFSb1fjZkoLUR5TK7r5PEld4v2F92xBI5Sxs,641
|
|
2
2
|
microdf/microdataframe.py,sha256=odwfJqYtLyLyYlIYNw7VVsJwn-eAAvUq2fF_bBqYgJg,40983
|
|
3
3
|
microdf/microseries.py,sha256=ayZWUX4LVID_l3ceLoBX3gLXi0dsLzgHXVTTpTW2eWk,36404
|
|
4
4
|
microdf/tests/conftest.py,sha256=u-EMyX1-u_nM-YO0RJYCzYHQDXxUI2WQE6GkyJlErqg,150
|
|
@@ -8,8 +8,9 @@ microdf/tests/test_microseries_dataframe.py,sha256=r9S9z2RFgnFZFMsaT72N-zClT6jEL
|
|
|
8
8
|
microdf/tests/test_nullify_weights_index.py,sha256=kZgzMaZEa_PXbsor2S4E-6VRid3C3rcC9ufk0qa7mgY,341
|
|
9
9
|
microdf/tests/test_pandas3_compatibility.py,sha256=A34Ni_WQ303sSNv-sqv5CGAQp54zj-ZSGAPEBHZslNI,8573
|
|
10
10
|
microdf/tests/test_quantile_missing_values.py,sha256=lfntDvV2q7KH_CPVrXFJSQFoaGlc_OkRGhKwpxtDQtY,5327
|
|
11
|
-
|
|
12
|
-
microdf_python-1.3.
|
|
13
|
-
microdf_python-1.3.
|
|
14
|
-
microdf_python-1.3.
|
|
15
|
-
microdf_python-1.3.
|
|
11
|
+
microdf/tests/test_version_metadata.py,sha256=M1EabzHLKZZw3Djd6Zu2UuMQtDLV6rZ1zDrOU7W_jf0,227
|
|
12
|
+
microdf_python-1.3.7.dist-info/licenses/LICENSE,sha256=uPs-ASYnzlldpf2z8jeRgQFeEH3FLhSuX0rw0OKWoDU,1067
|
|
13
|
+
microdf_python-1.3.7.dist-info/METADATA,sha256=Z0Z20RhW5ciz9No5LbKKYSjcsNOVzXkrBjozSyRbFI8,2305
|
|
14
|
+
microdf_python-1.3.7.dist-info/WHEEL,sha256=YVMoNqKzERt-wjUZwJ33xBGAwnFl-4cqbYkTtWa4itE,91
|
|
15
|
+
microdf_python-1.3.7.dist-info/top_level.txt,sha256=T2WFPTygQQMdS3GF8YpZ12DKfMGrspbZ3r7z-e3KfiM,8
|
|
16
|
+
microdf_python-1.3.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|