Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/BaselineOfAIViz/BaselineOfAIViz.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ BaselineOfAIViz >> baseline: spec [
baselineForPharo9: spec.

spec
group: 'Core' with: #('AI-Viz' 'AIVizRoassal');
group: 'Core' with: #('AIVizRoassal');
group: 'default' with: #('Core') ]


Expand Down Expand Up @@ -50,13 +50,13 @@ BaselineOfAIViz >> baselineForPharo8: spec [

{ #category : 'baselines' }
BaselineOfAIViz >> baselineForPharo9: spec [

"Roassal is natively in Pharo 9"
spec for: #(#'pharo9.x' #'pharo10.x' #'pharo11.x' #'pharo12.x' #'pharo13.x' #'pharo14.x' ) do: [
spec
package: 'AI-Viz-Roassal3'
with: [ spec requires: #('AI-Viz' 'AIMetrics' 'AIDatasets' 'ContainersOrderedSet') ].

spec group: 'AIVizRoassal' with: #('AI-Viz-Roassal3') ].

spec for: #( #'pharo9.x' #'pharo10.x' #'pharo11.x' #'pharo12.x' #'pharo13.x' #'pharo14.x' ) do: [
spec
baseline: 'AIHierarchicalClustering' with: [ spec repository: 'github://pharo-ai/hierarchical-clustering/src' ];
package: 'AI-Viz-Roassal3' with: [ spec requires: #( 'AIMetrics' 'AIDatasets' 'ContainersOrderedSet' ) ];
package: 'AI-Viz-Roassal3-HierarchicalClustering' with: [ spec requires: #( 'AI-HierarchicalClustering' ) ].

spec group: 'AIVizRoassal' with: #( 'AI-Viz-Roassal3' ) ]
]