Skip to content

Commit b7681f1

Browse files
authored
Merge pull request #197 from jecisc/rearchitect-packages
Merge Math in Core and Type in IO
2 parents e8143e2 + 3864496 commit b7681f1

29 files changed

+24
-32
lines changed

src/BaselineOfDataFrame/BaselineOfDataFrame.class.st

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,8 @@ BaselineOfDataFrame >> baseline: spec [
2323
spec
2424
package: 'DataFrame' with: [ spec requires: #('AINormalization') ];
2525
package: 'DataFrame-Tests' with: [ spec requires: #('DataFrame') ];
26-
package: 'DataFrame-Type' with: [ spec requires: #('DataFrame') ];
27-
package: 'DataFrame-Type-Tests' with: [ spec requires: #('DataFrame-Type') ];
28-
package: 'DataFrame-IO' with: [ spec requires: #('DataFrame' 'DataFrame-Type' 'NeoCSV' 'NeoJSON') ];
29-
package: 'DataFrame-IO-Tests' with: [ spec requires: #('DataFrame-IO') ];
30-
package: 'DataFrame-Math';
31-
package: 'DataFrame-Math-Tests' with: [ spec requires: #('DataFrame-Math') ] ].
26+
package: 'DataFrame-IO' with: [ spec requires: #('DataFrame' 'NeoCSV' 'NeoJSON') ];
27+
package: 'DataFrame-IO-Tests' with: [ spec requires: #('DataFrame-IO') ] ].
3228

3329
spec
3430
for: #'pharo7.x'

src/DataFrame-IO-Tests/DataFrameCsvReaderTest.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Class {
1010
'dataFrameWithoutRowNames',
1111
'dataFrameWithRowNames'
1212
],
13-
#category : #'DataFrame-IO-Tests'
13+
#category : #'DataFrame-IO-Tests-Core'
1414
}
1515

1616
{ #category : #running }

src/DataFrame-IO-Tests/DataFrameCsvWriterTest.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Class {
77
'commaQuoteCsvFile',
88
'tabQuoteCsvFile'
99
],
10-
#category : #'DataFrame-IO-Tests'
10+
#category : #'DataFrame-IO-Tests-Core'
1111
}
1212

1313
{ #category : #running }

src/DataFrame-IO-Tests/DataFrameJsonReaderTest.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Class {
88
'dfWithRowNames',
99
'dfWithRowColNames'
1010
],
11-
#category : #'DataFrame-IO-Tests'
11+
#category : #'DataFrame-IO-Tests-Core'
1212
}
1313

1414
{ #category : #running }

src/DataFrame-IO-Tests/DataFrameJsonWriterTest.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Class {
55
'directory',
66
'df'
77
],
8-
#category : #'DataFrame-IO-Tests'
8+
#category : #'DataFrame-IO-Tests-Core'
99
}
1010

1111
{ #category : #running }

src/DataFrame-Type-Tests/DataFrameTypeDetectorTest.class.st renamed to src/DataFrame-IO-Tests/DataFrameTypeDetectorTest.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Class {
44
#instVars : [
55
'detector'
66
],
7-
#category : #'DataFrame-Type-Tests'
7+
#category : #'DataFrame-IO-Tests-Type'
88
}
99

1010
{ #category : #running }

src/DataFrame-IO-Tests/TestCsvStrings.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Class {
22
#name : #TestCsvStrings,
33
#superclass : #Object,
4-
#category : #'DataFrame-IO-Tests'
4+
#category : #'DataFrame-IO-Tests-Core'
55
}
66

77
{ #category : #running }

src/DataFrame-IO-Tests/TestJsonStrings.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Class {
22
#name : #TestJsonStrings,
33
#superclass : #Object,
4-
#category : #'DataFrame-IO-Tests'
4+
#category : #'DataFrame-IO-Tests-Core'
55
}
66

77
{ #category : #running }

src/DataFrame-IO/DataFrameCsvReader.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Class {
3939
'rows',
4040
'columnNames'
4141
],
42-
#category : #'DataFrame-IO'
42+
#category : #'DataFrame-IO-Core'
4343
}
4444

4545
{ #category : #reading }

src/DataFrame-IO/DataFrameCsvWriter.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Class {
55
'separator',
66
'lineEndConvention'
77
],
8-
#category : #'DataFrame-IO'
8+
#category : #'DataFrame-IO-Core'
99
}
1010

1111
{ #category : #accessing }

0 commit comments

Comments
 (0)