File tree 2 files changed +8
-5
lines changed
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 1
1
[
2
2
[
3
3
{
4
- "package" : " pkg:pypi/torchcodec@0.2 .0%2Bcu124 " ,
4
+ "package" : " pkg:pypi/torchcodec@0.3 .0%2Bcu126 " ,
5
5
"dependencies" : []
6
6
}
7
7
],
8
8
[
9
- " pkg:pypi/torchcodec@0.2 .0%2Bcu124 "
9
+ " pkg:pypi/torchcodec@0.3 .0%2Bcu126 "
10
10
]
11
11
]
Original file line number Diff line number Diff line change 13
13
14
14
import packvers
15
15
import pytest
16
- from commoncode .system import on_mac
16
+ from commoncode .system import on_linux
17
17
from commoncode .testcase import FileDrivenTesting
18
18
from packvers .requirements import Requirement
19
19
from test_cli import check_data_results
@@ -131,10 +131,13 @@ def test_get_resolved_dependencies_with_tilde_requirement_using_json_api():
131
131
)
132
132
133
133
134
+ # fbgemm_gpu-1.2.0+cu118-cp312-cp312-manylinux_2_28_x86_64.whl
135
+
136
+
134
137
@pytest .mark .online
135
- @pytest .mark .skipif (on_mac , reason = "torch is only available for linux and windows ." )
138
+ @pytest .mark .skipif (not on_linux , reason = "torch is only available for linux." )
136
139
def test_get_resolved_dependencies_for_version_containing_local_version_identifier ():
137
- req = Requirement ("torchcodec==0.2 .0+cu124 " )
140
+ req = Requirement ("torchcodec==0.3 .0+cu126 " )
138
141
req .is_requirement_resolved = True
139
142
140
143
repos = [PypiSimpleRepository (index_url = "https://download.pytorch.org/whl" )]
You can’t perform that action at this time.
0 commit comments