Skip to content

Commit

Permalink
Relax Python protobuf version requirement (#147)
Browse files Browse the repository at this point in the history
* Relax the python protobuf version

* update version and changelog
  • Loading branch information
s0l0ist authored Jan 6, 2023
1 parent 9716a38 commit 53d7a54
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Version 1.0.2

Feat:

- This patch version relaxes the Python requirement to allow for older `protobuf` libraries to work with the PSI library.

# Version 1.0.1

Feat:
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openmined/psi.js",
"version": "1.0.1",
"version": "1.0.2",
"description": "Private Set Intersection for JavaScript",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion private_set_intersection/python/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ py_wheel(
}),
python_requires = ">=3.8",
python_tag = "INTERPRETER",
requires = ["protobuf==4.21.12"],
requires = ["protobuf>=3.20"],
version = VERSION_LABEL,
deps = [
":openmined_psi_pkg",
Expand Down
2 changes: 1 addition & 1 deletion private_set_intersection/python/requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ pytest==7.2.0
pytest-benchmark==4.0.0
twine==4.0.2
packaging==22.0
protobuf==4.21.12 # must be updated in wheel rule!
protobuf>=3.20 # must be updated in wheel rule!
14 changes: 7 additions & 7 deletions private_set_intersection/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# pip-compile requirements.in
#
attrs==22.1.0
attrs==22.2.0
# via pytest
black==22.12.0
# via -r requirements.in
Expand All @@ -20,13 +20,13 @@ commonmark==0.9.1
# via rich
docutils==0.19
# via readme-renderer
exceptiongroup==1.0.4
exceptiongroup==1.1.0
# via pytest
flake8==6.0.0
# via -r requirements.in
idna==3.4
# via requests
importlib-metadata==5.2.0
importlib-metadata==6.0.0
# via
# keyring
# twine
Expand All @@ -48,9 +48,9 @@ packaging==22.0
# pytest
pathspec==0.10.3
# via black
pkginfo==1.9.2
pkginfo==1.9.5
# via twine
platformdirs==2.6.0
platformdirs==2.6.2
# via black
pluggy==1.0.0
# via pytest
Expand All @@ -62,7 +62,7 @@ pycodestyle==2.10.0
# via flake8
pyflakes==3.0.1
# via flake8
pygments==2.13.0
pygments==2.14.0
# via
# readme-renderer
# rich
Expand All @@ -82,7 +82,7 @@ requests-toolbelt==0.10.1
# via twine
rfc3986==2.0.0
# via twine
rich==12.6.0
rich==13.0.1
# via twine
six==1.16.0
# via bleach
Expand Down
2 changes: 1 addition & 1 deletion tools/package.bzl
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
""" Version of the current release """
VERSION_LABEL = "1.0.1"
VERSION_LABEL = "1.0.2"

0 comments on commit 53d7a54

Please sign in to comment.