-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathBaselineOfPythonBridge.class.st
More file actions
30 lines (29 loc) · 1.03 KB
/
BaselineOfPythonBridge.class.st
File metadata and controls
30 lines (29 loc) · 1.03 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
Class {
#name : #BaselineOfPythonBridge,
#superclass : #BaselineOf,
#category : #BaselineOfPythonBridge
}
{ #category : #baselines }
BaselineOfPythonBridge >> baseline: spec [
<baseline>
spec
for: #common
do: [
spec
baseline: 'OSSubprocess'
with: [ spec repository: 'github://pharo-contributions/OSSubprocess:v1.3.0/repository' ].
spec
baseline: 'Python3Generator'
with: [ spec repository: 'github://juliendelplanque/Python3Generator:v2.0.0/repository' ].
spec baseline: 'NeoJSON' with: [
spec
repository: 'github://svenvc/NeoJSON/repository' ].
spec baseline: 'MessagePack' with: [
spec
repository: 'github://msgpack/msgpack-smalltalk:v1.3.1/repository' ].
spec
package: 'PythonBridge' with: [ spec requires: #('OSSubprocess' 'Python3Generator') ];
package: 'PythonBridge-Pharo' with: [ spec requires: #('PythonBridge' 'MessagePack') ];
package: 'PythonBridge-Bootstrap' with: [ spec requires: 'PythonBridge' ].
]
]