This repository was archived by the owner on Oct 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdub.json
More file actions
98 lines (98 loc) · 2.91 KB
/
dub.json
File metadata and controls
98 lines (98 loc) · 2.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "cpython",
"description": "static bindings to the CPython C API",
"authors": ["Ellery Newcomer", "Kirk McDonald"],
"license": "MIT",
"sourcePaths": ["."],
"importPaths": ["."],
"targetType": "sourceLibrary",
"versions-linux": ["Python_Unicode_UCS4"],
"versions-osx": ["Python_Unicode_UCS2"],
"versions-windows": ["Python_Unicode_UCS2"],
"configurations": [
{
"name": "python27",
"versions": [
"Python_2_4_Or_Later",
"Python_2_5_Or_Later",
"Python_2_6_Or_Later",
"Python_2_7_Or_Later",
]
},
{
"name": "python30",
"versions": [
"Python_2_4_Or_Later",
"Python_2_5_Or_Later",
"Python_2_6_Or_Later",
"Python_2_7_Or_Later",
"Python_3_0_Or_Later",
]
},
{
"name": "python31",
"versions": [
"Python_2_4_Or_Later",
"Python_2_5_Or_Later",
"Python_2_6_Or_Later",
"Python_2_7_Or_Later",
"Python_3_0_Or_Later",
"Python_3_1_Or_Later",
]
},
{
"name": "python32",
"versions": [
"Python_2_4_Or_Later",
"Python_2_5_Or_Later",
"Python_2_6_Or_Later",
"Python_2_7_Or_Later",
"Python_3_0_Or_Later",
"Python_3_1_Or_Later",
"Python_3_2_Or_Later",
]
},
{
"name": "python33",
"versions": [
"Python_2_4_Or_Later",
"Python_2_5_Or_Later",
"Python_2_6_Or_Later",
"Python_2_7_Or_Later",
"Python_3_0_Or_Later",
"Python_3_1_Or_Later",
"Python_3_2_Or_Later",
"Python_3_3_Or_Later",
]
},
{
"name": "python34",
"versions": [
"Python_2_4_Or_Later",
"Python_2_5_Or_Later",
"Python_2_6_Or_Later",
"Python_2_7_Or_Later",
"Python_3_0_Or_Later",
"Python_3_1_Or_Later",
"Python_3_2_Or_Later",
"Python_3_3_Or_Later",
"Python_3_4_Or_Later",
]
},
{
"name": "python35",
"versions": [
"Python_2_4_Or_Later",
"Python_2_5_Or_Later",
"Python_2_6_Or_Later",
"Python_2_7_Or_Later",
"Python_3_0_Or_Later",
"Python_3_1_Or_Later",
"Python_3_2_Or_Later",
"Python_3_3_Or_Later",
"Python_3_4_Or_Later",
"Python_3_5_Or_Later"
]
}
]
}