Skip to content

Commit b3a081c

Browse files
committed
fix
1 parent 2c2a4f6 commit b3a081c

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

.github/workflows/linux-test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,13 @@ jobs:
114114
script: ${{ inputs.pre-script }}
115115
- name: Download artifacts
116116
if: ${{ matrix.tensorrt == '' }}
117-
uses: actions/download-artifact@v3
117+
uses: actions/download-artifact@v4
118118
with:
119119
name: ${{ env.ARTIFACT_NAME }}
120120
path: /opt/torch-tensorrt-builds/
121121
- name: Download artifacts
122122
if: ${{ matrix.tensorrt != '' }}
123-
uses: actions/download-artifact@v3
123+
uses: actions/download-artifact@v4
124124
with:
125125
name: ${{ env.DOWNLOAD_ARTIFACT_NAME }}
126126
path: /opt/torch-tensorrt-builds/

.github/workflows/windows-test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,13 @@ jobs:
105105
is_windows: 'enabled'
106106
- name: Download artifacts
107107
if: ${{ matrix.tensorrt == '' }}
108-
uses: actions/download-artifact@v3
108+
uses: actions/download-artifact@v4
109109
with:
110110
name: ${{ env.ARTIFACT_NAME }}
111111
path: ${{ runner.temp }}/artifacts/
112112
- name: Download artifacts
113113
if: ${{ matrix.tensorrt != '' }}
114-
uses: actions/download-artifact@v3
114+
uses: actions/download-artifact@v4
115115
with:
116116
name: ${{ env.DOWNLOAD_ARTIFACT_NAME }}
117117
path: ${{ runner.temp }}/artifacts/

noxfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
# Set epochs to train VGG model for accuracy tests
3535
EPOCHS = 25
3636

37-
SUPPORTED_PYTHON_VERSIONS = ["3.7", "3.8", "3.9", "3.10"]
37+
SUPPORTED_PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12"]
3838

3939
nox.options.sessions = [
4040
"l0_api_tests-" + "{}.{}".format(sys.version_info.major, sys.version_info.minor)

py/requirements.txt

-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
numpy
22
packaging
33
pybind11==2.6.2
4-
--extra-index-url https://download.pytorch.org/whl/nightly/cu124
54
torch>=2.7.0.dev,<2.8.0
65
torchvision>=0.22.0.dev,<0.23.0
7-
--extra-index-url https://pypi.ngc.nvidia.com
86
pyyaml

0 commit comments

Comments
 (0)