Skip to content

Commit

Permalink
remove deps
Browse files Browse the repository at this point in the history
  • Loading branch information
dvadym committed Jan 31, 2022
1 parent 0a9ea79 commit 3748bd5
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 19 deletions.
1 change: 0 additions & 1 deletion examples/quickstart.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,6 @@
"import os\n",
"os.chdir('/content')\n",
"!pip install pipeline-dp\n",
"!pip install -r PipelineDP/requirements.dev.txt\n",
"\n",
"import sys\n",
"sys.path.insert(0,'/content/PipelineDP')\n",
Expand Down
6 changes: 3 additions & 3 deletions examples/restaurant_visits.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,11 @@
"\n",
"import os\n",
"os.chdir('/content')\n",
"!pip install pipeline-dp\n",
"!pip install pipeline-dp apache_beam\n",
"# If you'd like to test the most recent version of PipelineDP, uncomment the\n",
"# following line and comment-out the previous line.\n",
"# following lines and comment-out the previous line.\n",
"# !git clone https://github.com/OpenMined/PipelineDP.git\n",
"!pip install -r PipelineDP/requirements.dev.txt\n",
"# !pip install -r PipelineDP/requirements.dev.txt\n",
"\n",
"import sys\n",
"sys.path.insert(0,'/content/PipelineDP')\n",
Expand Down
2 changes: 1 addition & 1 deletion pipeline_dp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@
from pipeline_dp.pipeline_backend import LocalBackend
from pipeline_dp.pipeline_backend import SparkRDDBackend

__version__ = '0.1.0'
__version__ = '0.1.1'
8 changes: 1 addition & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,14 @@
[tool.poetry]
name = "pipeline-dp"
version = "0.1.0"
version = "0.1.1"
description = ""
authors = ["Chinmay Shah <[email protected]>", "Vadym Doroshenko <[email protected]>"]
license = "Apache-2.0"

[tool.poetry.dependencies]
python = "^3.7, < 3.11"
python-dp = "^1.1.1"
pyspark = "^3.2.0"
absl-py = "^1.0.0"
numpy = "^1.20.1"
apache-beam = "^2.35.0"
scipy = "^1.7.3"
dp-accounting = "^0.0.2"


[tool.poetry.dev-dependencies]
yapf = "^0.32.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.0.1rc5
current_version = 0.1.0
commit = True
tag = True

Expand Down
8 changes: 2 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@
{'': ['*']}

install_requires = \
['absl-py>=1.0.0,<2.0.0',
'apache-beam>=2.35.0,<3.0.0',
'dp-accounting>=0.0.2,<0.0.3',
'numpy>=1.20.1,<2.0.0',
'pyspark>=3.2.0,<4.0.0',
['numpy>=1.20.1,<2.0.0',
'python-dp>=1.1.1,<2.0.0',
'scipy>=1.7.3,<2.0.0']

Expand All @@ -24,7 +20,7 @@ def read(fname):

setup_kwargs = {
'name': 'pipeline-dp',
'version': '0.1.0',
'version': '0.1.1',
'description': 'Framework for applying differential privacy to large datasets using batch processing systems',
'author': 'Chinmay Shah',
'author_email': '[email protected]',
Expand Down

0 comments on commit 3748bd5

Please sign in to comment.