File tree Expand file tree Collapse file tree 5 files changed +16
-12
lines changed
Expand file tree Collapse file tree 5 files changed +16
-12
lines changed Original file line number Diff line number Diff line change 11name : Build
22
3- on : [push, pull_request]
3+ on : [ push, pull_request ]
44
55jobs :
66 build :
77 runs-on : ubuntu-latest
88
99 steps :
10- - uses : actions/checkout@v3
10+ - uses : actions/checkout@v4
1111 - uses : dart-lang/setup-dart@v1.4
1212
1313 - name : Install dependencies
Original file line number Diff line number Diff line change @@ -33,4 +33,8 @@ Add `toCsv` method. Improve method documentation. Remove the rather pointless `s
3333
3434# 0.1.2
3535
36- - Update jiffy as well as the dart sdk version range
36+ - Update jiffy as well as the dart sdk version range
37+
38+ # 0.1.3
39+
40+ - Update dart sdk to >=2.13.0 <=3.3.0, csv to 6.0.0
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ run-tests:
1111 @dart pub global run coverage:format_coverage --packages=.dart_tool/package_config.json --report-on=lib --lcov -o ./coverage/lcov.info -i ./coverage
1212
1313coverage-html :
14- genhtml coverage/lcov.info -o coverage/html
15- open coverage/html/index.html
14+ @ genhtml coverage/lcov.info -o coverage/html
15+ @ open coverage/html/index.html
1616
1717# $$$$$$$$$ Publishing $$$$$$$$$$
1818
Original file line number Diff line number Diff line change @@ -47,8 +47,8 @@ class DataFrame extends ListBase<RecordRow> {
4747 }
4848
4949 /// Builds a dataframe from a list of [rowMaps] , e.g.
50- /// [{'col1': 420, 'col2': 69},
51- /// {'col1': 666, 'col2': 1470}]
50+ /// \ [{'col1': 420, 'col2': 69},
51+ /// {'col1': 666, 'col2': 1470}\].
5252 DataFrame .fromRowMaps (List <RecordRowMap > rowMaps)
5353 : this ._default (rowMaps.first.keys.toList (),
5454 rowMaps.map ((e) => e.values.toList ()).toList ());
Original file line number Diff line number Diff line change 11name : koala
22description : A poor man's version of a pandas Dataframe. Collect, access & manipulate related data.
33repository : https://github.com/w2sv/koala
4- version : 0.1.2
4+ version : 0.1.3
55
66environment :
7- sdk : ' >=2.13.0 <=3.0.3 '
7+ sdk : ' >=2.13.0 <=3.3.0 '
88
99dependencies :
1010 collection : ^1.16.0
11- csv : ^5 .0.1
11+ csv : ^6 .0.0
1212 jiffy : ^6.0.0
1313
1414dev_dependencies :
15- coverage : ^1.6.0
16- test : ^1.21.5
15+ coverage : ^1.7.2
16+ test : ^1.25.2
You can’t perform that action at this time.
0 commit comments