Skip to content

Commit bb48d99

Browse files
author
Hernán Morales Durand
committed
AIDataInspector -> AIDataFrameInspector
1 parent c044efc commit bb48d99

File tree

2 files changed

+16
-17
lines changed

2 files changed

+16
-17
lines changed

src/BaselineOfPolyMath/BaselineOfPolyMath.class.st

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,12 @@ PolyMath is a Smalltalk project, similar to existing scientific libraries like N
1010
1111
"
1212
Class {
13-
#name : 'BaselineOfPolyMath',
14-
#superclass : 'BaselineOf',
15-
#category : 'BaselineOfPolyMath',
16-
#package : 'BaselineOfPolyMath'
13+
#name : #BaselineOfPolyMath,
14+
#superclass : #BaselineOf,
15+
#category : #BaselineOfPolyMath
1716
}
1817

19-
{ #category : 'baselines' }
18+
{ #category : #baselines }
2019
BaselineOfPolyMath >> baseline: spec [
2120

2221
<baseline>
@@ -42,23 +41,23 @@ BaselineOfPolyMath >> baseline: spec [
4241
package: 'Math-CompatibilityUpToPharo11' ]
4342
]
4443

45-
{ #category : 'dependencies' }
44+
{ #category : #dependencies }
4645
BaselineOfPolyMath >> dataFrameInspector: spec [
4746

4847
spec
49-
baseline: 'AIDataInspector'
48+
baseline: 'AIDataFrameInspector'
5049
with: [ spec repository: 'github://pharo-ai/data-inspector/src' ]
5150
]
5251

53-
{ #category : 'dependencies' }
52+
{ #category : #dependencies }
5453
BaselineOfPolyMath >> datasets: spec [
5554

5655
spec
5756
baseline: 'AIDatasets'
5857
with: [ spec repository: 'github://pharo-ai/datasets' ].
5958
]
6059

61-
{ #category : 'baselines' }
60+
{ #category : #baselines }
6261
BaselineOfPolyMath >> groups: spec [
6362

6463
spec
@@ -99,7 +98,7 @@ BaselineOfPolyMath >> groups: spec [
9998
with: #( 'Core' 'Extensions' 'Tests' 'Benchmarks' 'Accuracy' )
10099
]
101100

102-
{ #category : 'baselines' }
101+
{ #category : #baselines }
103102
BaselineOfPolyMath >> packages: spec [
104103

105104
spec
@@ -205,40 +204,40 @@ BaselineOfPolyMath >> packages: spec [
205204
with: [ spec requires: #( 'AIDatasets' 'AIDataInspector') ]
206205
]
207206

208-
{ #category : 'accessing' }
207+
{ #category : #accessing }
209208
BaselineOfPolyMath >> projectClass [
210209
^ [ self class environment at: #MetacelloCypressBaselineProject ]
211210
on: NotFound
212211
do: [ super projectClass ]
213212
]
214213

215-
{ #category : 'dependencies' }
214+
{ #category : #dependencies }
216215
BaselineOfPolyMath >> randomNumbers: spec [
217216

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

221-
{ #category : 'dependencies' }
220+
{ #category : #dependencies }
222221
BaselineOfPolyMath >> roassal: spec [
223222

224223
spec
225224
baseline: 'Roassal'
226225
with: [ spec repository: 'github://pharo-graphics/Roassal' ].
227226
]
228227

229-
{ #category : 'dependencies' }
228+
{ #category : #dependencies }
230229
BaselineOfPolyMath >> sMark: spec [
231230

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

235-
{ #category : 'dependencies' }
234+
{ #category : #dependencies }
236235
BaselineOfPolyMath >> vectorMatrix: spec [
237236

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

241-
{ #category : 'dependencies' }
240+
{ #category : #dependencies }
242241
BaselineOfPolyMath >> xmlWriter: spec [
243242

244243
spec baseline: 'XMLWriter' with: [ spec repository: 'github://pharo-contributions/XML-XMLWriter:2.9.x/src' ]

src/BaselineOfPolyMath/package.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Package { #name : 'BaselineOfPolyMath' }
1+
Package { #name : #BaselineOfPolyMath }

0 commit comments

Comments
 (0)