Skip to content

Commit

Permalink
AIDataInspector -> AIDataFrameInspector
Browse files Browse the repository at this point in the history
  • Loading branch information
Hernán Morales Durand committed Dec 28, 2023
1 parent c044efc commit bb48d99
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 17 deletions.
31 changes: 15 additions & 16 deletions src/BaselineOfPolyMath/BaselineOfPolyMath.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,12 @@ PolyMath is a Smalltalk project, similar to existing scientific libraries like N
"
Class {
#name : 'BaselineOfPolyMath',
#superclass : 'BaselineOf',
#category : 'BaselineOfPolyMath',
#package : 'BaselineOfPolyMath'
#name : #BaselineOfPolyMath,
#superclass : #BaselineOf,
#category : #BaselineOfPolyMath
}

{ #category : 'baselines' }
{ #category : #baselines }
BaselineOfPolyMath >> baseline: spec [

<baseline>
Expand All @@ -42,23 +41,23 @@ BaselineOfPolyMath >> baseline: spec [
package: 'Math-CompatibilityUpToPharo11' ]
]

{ #category : 'dependencies' }
{ #category : #dependencies }
BaselineOfPolyMath >> dataFrameInspector: spec [

spec
baseline: 'AIDataInspector'
baseline: 'AIDataFrameInspector'
with: [ spec repository: 'github://pharo-ai/data-inspector/src' ]
]

{ #category : 'dependencies' }
{ #category : #dependencies }
BaselineOfPolyMath >> datasets: spec [

spec
baseline: 'AIDatasets'
with: [ spec repository: 'github://pharo-ai/datasets' ].
]

{ #category : 'baselines' }
{ #category : #baselines }
BaselineOfPolyMath >> groups: spec [

spec
Expand Down Expand Up @@ -99,7 +98,7 @@ BaselineOfPolyMath >> groups: spec [
with: #( 'Core' 'Extensions' 'Tests' 'Benchmarks' 'Accuracy' )
]

{ #category : 'baselines' }
{ #category : #baselines }
BaselineOfPolyMath >> packages: spec [

spec
Expand Down Expand Up @@ -205,40 +204,40 @@ BaselineOfPolyMath >> packages: spec [
with: [ spec requires: #( 'AIDatasets' 'AIDataInspector') ]
]

{ #category : 'accessing' }
{ #category : #accessing }
BaselineOfPolyMath >> projectClass [
^ [ self class environment at: #MetacelloCypressBaselineProject ]
on: NotFound
do: [ super projectClass ]
]

{ #category : 'dependencies' }
{ #category : #dependencies }
BaselineOfPolyMath >> randomNumbers: spec [

spec baseline: 'MathRandomNumbers' with: [ spec repository: 'github://PolyMathOrg/random-numbers:v1.x.x/src' ]
]

{ #category : 'dependencies' }
{ #category : #dependencies }
BaselineOfPolyMath >> roassal: spec [

spec
baseline: 'Roassal'
with: [ spec repository: 'github://pharo-graphics/Roassal' ].
]

{ #category : 'dependencies' }
{ #category : #dependencies }
BaselineOfPolyMath >> sMark: spec [

spec baseline: 'SMark' with: [ spec repository: 'github://smarr/SMark:v1.0.4' ]
]

{ #category : 'dependencies' }
{ #category : #dependencies }
BaselineOfPolyMath >> vectorMatrix: spec [

spec baseline: 'MathVectorMatrix' with: [ spec repository: 'github://PolyMathOrg/vector-matrix:v1.x.x/src' ]
]

{ #category : 'dependencies' }
{ #category : #dependencies }
BaselineOfPolyMath >> xmlWriter: spec [

spec baseline: 'XMLWriter' with: [ spec repository: 'github://pharo-contributions/XML-XMLWriter:2.9.x/src' ]
Expand Down
2 changes: 1 addition & 1 deletion src/BaselineOfPolyMath/package.st
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Package { #name : 'BaselineOfPolyMath' }
Package { #name : #BaselineOfPolyMath }

0 comments on commit bb48d99

Please sign in to comment.