Skip to content

Commit 2bd3835

Browse files
authored
Fix protobuf version (#4719)
* fix protobuf * update
1 parent cb92831 commit 2bd3835

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
2727
- Added support for graph-level outputs in `to_hetero` ([#4582](https://github.com/pyg-team/pytorch_geometric/pull/4582))
2828
- Added `CHANGELOG.md` ([#4581](https://github.com/pyg-team/pytorch_geometric/pull/4581))
2929
### Changed
30+
- Fixed `protobuf` version ([#4719](https://github.com/pyg-team/pytorch_geometric/pull/4719))
3031
- Fixed the ranking protocol bug in the RGCN link prediction example ([#4688](https://github.com/pyg-team/pytorch_geometric/pull/4688))
3132
- Math support in Markdown ([#4683](https://github.com/pyg-team/pytorch_geometric/pull/4683))
3233
- Allow for `setter` properties in `Data` ([#4682](https://github.com/pyg-team/pytorch_geometric/pull/4682), [#4686](https://github.com/pyg-team/pytorch_geometric/pull/4686))

setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
graphgym_requires = [
1717
'yacs',
1818
'hydra-core',
19+
'protobuf<4.21',
1920
'pytorch-lightning',
2021
]
2122

@@ -36,6 +37,7 @@
3637
]
3738

3839
benchmark_requires = [
40+
'protobuf<4.21',
3941
'wandb',
4042
]
4143

0 commit comments

Comments
 (0)