Skip to content

Commit a0aee50

Browse files
author
abel
committed
(fix) Change proto generation logic in Makefile to use the generic python3 instead of python3.10
1 parent ab92a2b commit a0aee50

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ gen: gen-client
77
gen-client: copy-proto
88
@for dir in $(PROTO_DIRS); do \
99
mkdir -p ./pyinjective/$${dir}; \
10-
python3.10 -m grpc_tools.protoc \
10+
python3 -m grpc_tools.protoc \
1111
-I proto \
1212
--python_out=./pyinjective/proto \
1313
--grpc_python_out=./pyinjective/proto \

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ pytest = "*"
2626
pytest-asyncio = "*"
2727

2828
[requires]
29-
python_version = "3.8"
29+
python_version = "3.9"

0 commit comments

Comments
 (0)