You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

drpt

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

drpt - pypi Package Compare versions

Comparing version
0.5.0
to
0.5.1
+1
-1
PKG-INFO
Metadata-Version: 2.1
Name: drpt
Version: 0.5.0
Version: 0.5.1
Summary: Tool for preparing a dataset for publishing by dropping, renaming, scaling, and obfuscating columns defined in a recipe.

@@ -5,0 +5,0 @@ Author-email: Constantinos Xanthopoulos <conx@xanthopoulos.info>

@@ -7,3 +7,3 @@ [build-system]

name = "drpt"
version = "0.5.0"
version = "0.5.1"
description = "Tool for preparing a dataset for publishing by dropping, renaming, scaling, and obfuscating columns defined in a recipe."

@@ -40,3 +40,3 @@ readme = "README.md"

[tool.bumpver]
current_version = "0.5.0"
current_version = "0.5.1"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"

@@ -43,0 +43,0 @@ commit_message = "Bump version {old_version} -> {new_version}"

Metadata-Version: 2.1
Name: drpt
Version: 0.5.0
Version: 0.5.1
Summary: Tool for preparing a dataset for publishing by dropping, renaming, scaling, and obfuscating columns defined in a recipe.

@@ -5,0 +5,0 @@ Author-email: Constantinos Xanthopoulos <conx@xanthopoulos.info>

@@ -1,1 +0,1 @@

__version__ = "0.5.0"
__version__ = "0.5.1"

@@ -173,2 +173,6 @@ #!/usr/bin/env python3.9

data = pd.read_parquet(self.input_file, engine="pyarrow")
# Force unique index
if not data.index.is_unique:
data = data.reset_index(drop=True)
return data

@@ -175,0 +179,0 @@