File tree Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Original file line number Diff line number Diff line change 30
30
"whl/test" : "torch_test.html" ,
31
31
}
32
32
33
+ PACKAGE_ALLOW_LIST = {
34
+ "Pillow" ,
35
+ "certifi" ,
36
+ "charset-normalizer" ,
37
+ "cmake" ,
38
+ "filelock" ,
39
+ "idna" ,
40
+ "mpmath" ,
41
+ "nestedtensor" ,
42
+ "networkx" ,
43
+ "numpy" ,
44
+ "packaging" ,
45
+ "pytorch-triton" ,
46
+ "requests" ,
47
+ "sympy" ,
48
+ "torch" ,
49
+ "torcharrow" ,
50
+ "torchaudio" ,
51
+ "torchcsprng" ,
52
+ "torchdata" ,
53
+ "torchdistx" ,
54
+ "torchrec" ,
55
+ "torchtext" ,
56
+ "torchvision" ,
57
+ "typing-extensions" ,
58
+ "urllib3" ,
59
+ }
60
+
33
61
# Should match torch-2.0.0.dev20221221+cu118-cp310-cp310-linux_x86_64.whl as:
34
62
# Group 1: torch-2.0.0.dev
35
63
# Group 2: 20221221
@@ -96,7 +124,7 @@ def nightly_packages_to_show(self: S3IndexType) -> Set[str]:
96
124
to_hide .add (obj )
97
125
elif between_bad_dates (package_build_time ):
98
126
to_hide .add (obj )
99
- elif "torchtriton" in package_name :
127
+ elif package_name not in PACKAGE_ALLOW_LIST :
100
128
to_hide .add (obj )
101
129
else :
102
130
packages [package_name ] += 1
You can’t perform that action at this time.
0 commit comments