Skip to content

Commit

Permalink
v0.2.1.rc7 (#498)
Browse files Browse the repository at this point in the history
  • Loading branch information
dvadym authored Oct 18, 2023
1 parent a6eee87 commit 0473e30
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pipeline_dp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@
from pipeline_dp.pipeline_backend import PipelineBackend
from pipeline_dp.pipeline_backend import SparkRDDBackend

__version__ = '0.2.1.rc6'
__version__ = '0.2.1.rc7'
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pipeline-dp"
version = "0.2.1.rc6"
version = "0.2.1.rc7"
description = ""
authors = ["Chinmay Shah <chinmayshah3899@gmail.com>", "Vadym Doroshenko <dvadym@google.com>"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.1.rc6
current_version = 0.2.1.rc7
commit = True
tag = True

Expand Down
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@
import os

packages = \
['pipeline_dp', 'utility_analysis']
['pipeline_dp',
'pipeline_dp.dataset_histograms'
]

package_data = \
{'': ['*']}

install_requires = \
['numpy>=1.20.1,<2.0.0',
'python-dp>=1.1.4',
'python-dp>=1.1.5rc4',
'scipy>=1.7.3,<2.0.0'
]

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

setup_kwargs = {
'name': 'pipeline-dp',
'version': '0.2.1.rc6',
'version': '0.2.1.rc7',
'description': 'Framework for applying differential privacy to large datasets using batch processing systems',
'author': 'Chinmay Shah',
'author_email': 'chinmayshah3899@gmail.com',
Expand Down

0 comments on commit 0473e30

Please sign in to comment.