Skip to content

Commit 40d8157

Browse files
authored
enhance: Support Python3.13 and upgrade grpcio range (#2684)
See also: #2612 --------- Signed-off-by: yangxuan <[email protected]>
1 parent 9df9bdd commit 40d8157

13 files changed

+1565
-524
lines changed

.github/mergify.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ pull_request_rules:
55
- base=master
66
- base~=2\.\d
77
- "status-success=Run Python Tests (3.8, windows-2022)"
8-
- "status-success=Run Python Tests (3.12, windows-2022)"
8+
- "status-success=Run Python Tests (3.13, windows-2022)"
99
- "status-success=Run Python Tests (3.8, ubuntu-22.04)"
10-
- "status-success=Run Python Tests (3.12, ubuntu-22.04)"
10+
- "status-success=Run Python Tests (3.13, ubuntu-22.04)"
1111
- "status-success=Run Check Proto (3.8)"
1212
- "status-success=Code lint check (3.8)"
13-
- "status-success=Run Check Proto (3.12)"
14-
- "status-success=Code lint check (3.12)"
13+
- "status-success=Run Check Proto (3.13)"
14+
- "status-success=Code lint check (3.13)"
1515
actions:
1616
label:
1717
add:

.github/workflows/check_milvus_proto.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-22.04
1212
strategy:
1313
matrix:
14-
python-version: [3.8, 3.12]
14+
python-version: [3.8, 3.13]
1515
steps:
1616
- uses: actions/checkout@v4
1717
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/code_checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-22.04
1212
strategy:
1313
matrix:
14-
python-version: [3.8, 3.12]
14+
python-version: [3.8, 3.13]
1515
steps:
1616
- name: Checkout code
1717
uses: actions/checkout@v4

.github/workflows/publish_dev_package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
run: |
2121
git fetch --prune --unshallow
2222
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
23-
- name: Set up Python 3.12
23+
- name: Set up Python 3.13
2424
uses: actions/setup-python@v5
2525
with:
26-
python-version: 3.12
26+
python-version: 3.13
2727
- name: Install pypa/build
2828
run: >-
2929
python -m

.github/workflows/publish_on_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
run: |
2020
git fetch --prune --unshallow
2121
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
22-
- name: Set up Python 3.12
22+
- name: Set up Python 3.13
2323
uses: actions/setup-python@v5
2424
with:
25-
python-version: 3.12
25+
python-version: 3.13
2626
- name: Install pypa/build
2727
run: >-
2828
python -m

pymilvus/grpc_gen/common_pb2.py

Lines changed: 19 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pymilvus/grpc_gen/feder_pb2.py

Lines changed: 14 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)