Skip to content

Commit 029d764

Browse files
committed
change default py to 3.11
1 parent 6ea3cf0 commit 029d764

File tree

4 files changed

+4
-15
lines changed

4 files changed

+4
-15
lines changed

.github/workflows/build-test-linux.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
test-infra-ref: main
2424
with-rocm: false
2525
with-cpu: false
26+
python-versions: '["3.11"]'
2627

2728
filter-matrix:
2829
needs: [generate-matrix]
@@ -32,7 +33,7 @@ jobs:
3233
steps:
3334
- uses: actions/setup-python@v5
3435
with:
35-
python-version: '3.10'
36+
python-version: '3.11'
3637
- uses: actions/checkout@v4
3738
with:
3839
repository: pytorch/tensorrt

.github/workflows/generate_binary_build_matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
steps:
7373
- uses: actions/setup-python@v5
7474
with:
75-
python-version: '3.10'
75+
python-version: '3.11'
7676
- name: Checkout test-infra repository
7777
uses: actions/checkout@v4
7878
with:

py/ci/build_manifest.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
py38
21
py39
32
py310
43
py311
4+
py312
55
libtorchtrt_pre_cxx11_abi

py/ci/build_whl.sh

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,6 @@ patch_wheel() {
3232
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${TENSERRT_DIR}/lib:$1/torch/lib:$1/tensorrt/:${CUDA_HOME}/lib64:${CUDA_HOME}/lib64/stubs $2/bin/python -m auditwheel repair $(cat ${PROJECT_DIR}/py/ci/soname_excludes.params) --plat manylinux_2_34_x86_64 dist/torch_tensorrt-*-$3-linux_x86_64.whl
3333
}
3434

35-
py38() {
36-
cd ${PROJECT_DIR}
37-
PY_BUILD_CODE=cp38-cp38
38-
PY_SINGLE_BUILD_CODE=cp38
39-
PY_VERSION=3.8
40-
PY_NAME=python${PY_VERSION}
41-
PY_DIR=/opt/python/${PY_BUILD_CODE}
42-
PY_PKG_DIR=${PY_DIR}/lib/${PY_NAME}/site-packages/
43-
build_wheel ${PY_DIR} ${PY_SINGLE_BUILD_CODE}
44-
patch_wheel ${PY_PKG_DIR} ${PY_DIR} ${PY_BUILD_CODE}
45-
}
46-
4735
py39() {
4836
cd ${PROJECT_DIR}
4937
PY_BUILD_CODE=cp39-cp39

0 commit comments

Comments
 (0)