diff --git a/examples/quickstart.ipynb b/examples/quickstart.ipynb index 22902da5..424ed0fa 100644 --- a/examples/quickstart.ipynb +++ b/examples/quickstart.ipynb @@ -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", diff --git a/examples/restaurant_visits.ipynb b/examples/restaurant_visits.ipynb index 823a47dd..07c7c510 100644 --- a/examples/restaurant_visits.ipynb +++ b/examples/restaurant_visits.ipynb @@ -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", diff --git a/pipeline_dp/__init__.py b/pipeline_dp/__init__.py index c7c0e732..219c80ed 100644 --- a/pipeline_dp/__init__.py +++ b/pipeline_dp/__init__.py @@ -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' diff --git a/pyproject.toml b/pyproject.toml index e0853d88..6ed56970 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pipeline-dp" -version = "0.1.0" +version = "0.1.1" description = "" authors = ["Chinmay Shah ", "Vadym Doroshenko "] license = "Apache-2.0" @@ -8,13 +8,7 @@ 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" diff --git a/setup.cfg b/setup.cfg index c1b31bc3..d974a899 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.1rc5 +current_version = 0.1.0 commit = True tag = True diff --git a/setup.py b/setup.py index 755ca805..6d128b58 100644 --- a/setup.py +++ b/setup.py @@ -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'] @@ -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': 'chinmayshah3899@gmail.com',