Skip to content

Releases: m3dev/gokart

Release 0.3.30

23 Apr 04:18
5eb59d8
Compare
Choose a tag to compare

New feature

  • Add parameter alias to inherits_config_params #193

BUGFIX

  • Fix ListTaskInstanceParameter bug #199

Release 0.3.29: fix ListTaskInstanceParameter behavior

17 Apr 10:36
a3fb3d5
Compare
Choose a tag to compare

fix

  • Fix ListTaskInstanceParameter behavior when not specific requires method : #195

Now works following:

class Foo(gokart.TaskOnKart):   # hasn't requires method
    foo = gokart.ListTaskInstanceParameter()

    def run(self):
        foo = self.load_data_frame('foo')

0.3.28: Support no specification load single dataframe

16 Mar 04:12
7056c10
Compare
Choose a tag to compare

New feature

  • Support no specification load single dataframe #180
class Task(gokart.TaskOnKart):
    bar = gokart.TaskInstancePrameter()

    def run(self):
        df = self.load_data_frame()    # We won't have to write "bar" about it because it's obvious

0.3.27: Support py3.9 & other fixes

15 Mar 02:33
f8d0d31
Compare
Choose a tag to compare

BUGFIX

Refactoring

0.3.26: Suppress redundant warning messages and introduce tox integration

29 Jan 04:20
4971269
Compare
Choose a tag to compare

minor fix and improve CI

  • Suppress redundant warning messages by @mski-iksm
  • tox test for multiple python versions by @hirosassa

0.3.25: Packaging poetry

27 Jan 01:42
415d5f3
Compare
Choose a tag to compare

Changes

  • packaging setup.py -> poetry

0.3.24: Efficient task lock

20 Jan 00:19
6fd56ab
Compare
Choose a tag to compare

New Feature

0.3.23: Careful assertion on empty dump

12 Jan 08:30
6088284
Compare
Choose a tag to compare

New feature

CI Improvement

Minor fixes

  • fix readme link miss #163 by @mski_iksm
  • hotfix: ill formed format.xml #164 by @Hi-king

0.3.22: Bugfix & Refactoring

04 Jan 03:04
23a1aaf
Compare
Choose a tag to compare

Bugfix

  • set redis_timeout parameter as siginificant=False (#154) by @mski-iksm

Refactoring

0.3.21: New way to inherit config params

21 Dec 12:17
f938186
Compare
Choose a tag to compare