File tree 6 files changed +10
-17
lines changed
6 files changed +10
-17
lines changed Original file line number Diff line number Diff line change 1
- 3.3 .1
1
+ 3.4 .1
Original file line number Diff line number Diff line change @@ -53,16 +53,16 @@ http_archive(
53
53
name = "libtorch" ,
54
54
build_file = "@//third_party/libtorch:BUILD" ,
55
55
strip_prefix = "libtorch" ,
56
- urls = ["https://download.pytorch.org/libtorch/cu102/libtorch-cxx11-abi-shared-with-deps-1.5.1 .zip" ],
57
- sha256 = "cf0691493d05062fe3239cf76773bae4c5124f4b039050dbdd291c652af3ab2a "
56
+ urls = ["https://download.pytorch.org/libtorch/cu102/libtorch-cxx11-abi-shared-with-deps-1.6.0 .zip" ],
57
+ sha256 = "fded948bd2dbee625cee33ebbd4843a69496729389e0200a90fbb667cdaeeb69 "
58
58
)
59
59
60
60
http_archive (
61
61
name = "libtorch_pre_cxx11_abi" ,
62
62
build_file = "@//third_party/libtorch:BUILD" ,
63
63
strip_prefix = "libtorch" ,
64
- sha256 = "818977576572eadaf62c80434a25afe44dbaa32ebda3a0919e389dcbe74f8656 " ,
65
- urls = ["https://download.pytorch.org/libtorch/cu102/libtorch-shared-with-deps-1.5.1 .zip" ],
64
+ sha256 = "141bb229f4bbf905541096cf8705785e7b0c79e37ca1e5db9d372730b1b9abd7 " ,
65
+ urls = ["https://download.pytorch.org/libtorch/cu102/libtorch-shared-with-deps-1.6.0 .zip" ],
66
66
)
67
67
68
68
# Download these tarballs manually from the NVIDIA website
Original file line number Diff line number Diff line change @@ -6,12 +6,6 @@ cd /workspace/TRTorch/py
6
6
7
7
export CXX=g++
8
8
9
- build_py35 () {
10
- /opt/python/cp35-cp35m/bin/python -m pip install -r requirements.txt
11
- /opt/python/cp35-cp35m/bin/python setup.py bdist_wheel
12
- # auditwheel repair --plat manylinux2014_x86_64
13
- }
14
-
15
9
build_py36 () {
16
10
/opt/python/cp36-cp36m/bin/python -m pip install -r requirements.txt
17
11
/opt/python/cp36-cp36m/bin/python setup.py bdist_wheel
@@ -30,7 +24,6 @@ build_py38() {
30
24
# auditwheel repair --plat manylinux2014_x86_64
31
25
}
32
26
33
- build_py35
34
27
build_py36
35
28
build_py37
36
29
build_py38
Original file line number Diff line number Diff line change 1
- torch == 1.5.1
1
+ torch == 1.6.0
Original file line number Diff line number Diff line change @@ -196,7 +196,7 @@ def run(self):
196
196
long_description = long_description ,
197
197
ext_modules = ext_modules ,
198
198
install_requires = [
199
- 'torch==1.5.1 ' ,
199
+ 'torch==1.6.0 ' ,
200
200
],
201
201
setup_requires = [],
202
202
cmdclass = {
@@ -210,7 +210,7 @@ def run(self):
210
210
license = "BSD" ,
211
211
packages = find_packages (),
212
212
classifiers = [
213
- "Development Status :: 3 - Alpha " ,
213
+ "Development Status :: 4 - Beta " ,
214
214
"Environment :: GPU :: NVIDIA CUDA" ,
215
215
"License :: OSI Approved :: BSD License" ,
216
216
"Intended Audience :: Developers" ,
@@ -224,7 +224,7 @@ def run(self):
224
224
"Topic :: Software Development" ,
225
225
"Topic :: Software Development :: Libraries"
226
226
],
227
- python_requires = '>=3.5 ' ,
227
+ python_requires = '>=3.6 ' ,
228
228
include_package_data = True ,
229
229
package_data = {
230
230
'trtorch' : ['lib/*.so' ],
Original file line number Diff line number Diff line change 1
- torchvision == 0.6 .0
1
+ torchvision == 0.7 .0
You can’t perform that action at this time.
0 commit comments