We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0811bbf commit 69539feCopy full SHA for 69539fe
2 files changed
ml_metadata/ml_metadata.bzl
@@ -224,8 +224,6 @@ def ml_metadata_pybind_extension(
224
# For Linux, include Python 2 symbols for compatibility
225
# (version script allows undefined symbols)
226
exported_symbols_linux = [
227
- "init%s" % sname,
228
- "init_%s" % sname,
229
"PyInit_%s" % sname,
230
]
231
setup.py
@@ -163,9 +163,9 @@ def run(self):
163
# Make sure to sync the versions of common dependencies (absl-py, numpy,
164
# six, and protobuf) with TF.
165
install_requires=[
166
- 'absl-py>=0.9,<2.0.0',
167
- 'attrs>=20.3,<24',
168
- 'grpcio>=1.8.6,<2',
+ 'absl-py>=0.9,<2.3.2',
+ 'attrs>=20.3,<25.5',
+ 'grpcio>=1.8.6,<1.66',
169
f'protobuf>={"4.25.2" if _IS_PY311 else "4.21.6"},<5',
170
'six>=1.10,<2',
171
],
0 commit comments