Skip to content

Commit

Permalink
protobuf 23.3 -> 23.4; update python dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lperron committed Aug 9, 2023
1 parent ed8db90 commit 8db6803
Show file tree
Hide file tree
Showing 8 changed files with 452 additions and 366 deletions.
2 changes: 1 addition & 1 deletion Dependencies.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Protobuf=v23.3
Protobuf=v23.4
abseil-cpp=20230125.3
Cbc=2.10.7
Cgl=0.60.5
Expand Down
4 changes: 2 additions & 2 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ git_repository(
## Protobuf
git_repository(
name = "com_google_protobuf",
tag = "v23.3",
patches = ["//patches:protobuf-v23.3.patch"],
tag = "v23.4",
patches = ["//patches:protobuf-v23.4.patch"],
patch_args = ["-p1"],
remote = "https://github.com/protocolbuffers/protobuf.git",
)
Expand Down
20 changes: 11 additions & 9 deletions bazel/notebook_requirements.in
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
# OR-Tools code dependencies
absl-py==1.4.0
numpy==1.24.3
protobuf==4.23.3
scipy==1.10.0
numpy==1.25.2
protobuf==4.23.4
scipy==1.11.1

# OR-Tools build dependencies
mypy-protobuf==3.4.0
virtualenv==20.16.6
black==23.3.0
mypy-protobuf==3.5.0
virtualenv==20.24.2
black==23.7.0

# Example dependencies
pandas==1.5.3
pandas==2.0.3

# Visualization dependencies
svgwrite==1.4.3
plotly==5.13.0
plotly==5.15.0

# Notebook
notebook==6.5.4
notebook==7.0.2
tornado==6.3.2
Pygments==2.15.0
506 changes: 298 additions & 208 deletions bazel/notebook_requirements.txt

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions bazel/ortools_requirements.in
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# OR-Tools code dependencies
absl-py==1.4.0
numpy==1.24.3
protobuf==4.23.3
scipy==1.10.0
numpy==1.25.2
protobuf==4.23.4
scipy==1.11.1

# OR-Tools build dependencies
mypy-protobuf==3.4.0
virtualenv==20.16.6
black==23.3.0
mypy-protobuf==3.5.0
virtualenv==20.24.2
black==23.7.0

# Example dependencies
pandas==1.5.3
pandas==2.0.3
268 changes: 131 additions & 137 deletions bazel/ortools_requirements.txt

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions cmake/dependencies/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@ if(BUILD_Protobuf)
FetchContent_Declare(
protobuf
GIT_REPOSITORY "https://github.com/protocolbuffers/protobuf.git"
GIT_TAG "v23.3"
GIT_TAG "v23.4"
GIT_SUBMODULES ""
PATCH_COMMAND git apply --ignore-whitespace "${CMAKE_CURRENT_LIST_DIR}/../../patches/protobuf-v23.3.patch")
PATCH_COMMAND git apply --ignore-whitespace "${CMAKE_CURRENT_LIST_DIR}/../../patches/protobuf-v23.4.patch")
FetchContent_MakeAvailable(protobuf)
list(POP_BACK CMAKE_MESSAGE_INDENT)
message(CHECK_PASS "fetched")
Expand Down
File renamed without changes.

0 comments on commit 8db6803

Please sign in to comment.