Skip to content

Commit 0473e30

Browse files
authored
v0.2.1.rc7 (#498)
1 parent a6eee87 commit 0473e30

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

pipeline_dp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@
3838
from pipeline_dp.pipeline_backend import PipelineBackend
3939
from pipeline_dp.pipeline_backend import SparkRDDBackend
4040

41-
__version__ = '0.2.1.rc6'
41+
__version__ = '0.2.1.rc7'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pipeline-dp"
3-
version = "0.2.1.rc6"
3+
version = "0.2.1.rc7"
44
description = ""
55
authors = ["Chinmay Shah <[email protected]>", "Vadym Doroshenko <[email protected]>"]
66
license = "Apache-2.0"

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.2.1.rc6
2+
current_version = 0.2.1.rc7
33
commit = True
44
tag = True
55

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@
33
import os
44

55
packages = \
6-
['pipeline_dp', 'utility_analysis']
6+
['pipeline_dp',
7+
'pipeline_dp.dataset_histograms'
8+
]
79

810
package_data = \
911
{'': ['*']}
1012

1113
install_requires = \
1214
['numpy>=1.20.1,<2.0.0',
13-
'python-dp>=1.1.4',
15+
'python-dp>=1.1.5rc4',
1416
'scipy>=1.7.3,<2.0.0'
1517
]
1618

@@ -21,7 +23,7 @@ def read(fname):
2123

2224
setup_kwargs = {
2325
'name': 'pipeline-dp',
24-
'version': '0.2.1.rc6',
26+
'version': '0.2.1.rc7',
2527
'description': 'Framework for applying differential privacy to large datasets using batch processing systems',
2628
'author': 'Chinmay Shah',
2729
'author_email': '[email protected]',

0 commit comments

Comments
 (0)