~sthagen

Switzerland

https://stefan-hagen.website

Working with teams, changing things and the way we work. Any personal contribution of this user is MIT licensed. Opinions expressed on behalf of himself only.

Trackers

~sthagen/arbejdstimer

Last active 3 days ago

~sthagen/versioalueet

Last active 10 days ago

~sthagen/csaf

Last active a month ago

~sthagen/liitos

Last active a month ago

~sthagen/laskea

Last active 2 months ago

~sthagen/muuntaa

Last active 6 months ago

~sthagen/roter

Last active 6 months ago

~sthagen/testaus

Last active 11 months ago

~sthagen/tallipoika

Last active 1 year, 15 days ago

~sthagen/keskustelua

Last active 1 year, 15 days ago
View more

#1 Add YAML as configuration format to ease the maintenance 3 days ago

~sthagen assigned ~sthagen to #1 on ~sthagen/arbejdstimer

#1 Add YAML as configuration format to ease the maintenance 3 days ago

Feature added by ~sthagen on ~sthagen/arbejdstimer

#1 Add YAML as configuration format to ease the maintenance 3 days ago

Ticket created by ~sthagen on ~sthagen/arbejdstimer

Users need edit the configuration files. This is easier with YAML than with JSON.

#2 Fix the union type annotation (or declare python 3.9 as unsupported) 9 days ago

Comment by ~sthagen on ~sthagen/versioalueet

Fixed in version 2024.1.8

REPORTED RESOLVED FIXED

#2 Fix the union type annotation (or declare python 3.9 as unsupported) 10 days ago

~sthagen assigned ~sthagen to #2 on ~sthagen/versioalueet

#2 Fix the union type annotation (or declare python 3.9 as unsupported) 10 days ago

Bug added by ~sthagen on ~sthagen/versioalueet

#2 Fix the union type annotation (or declare python 3.9 as unsupported) 10 days ago

Ticket created by ~sthagen on ~sthagen/versioalueet

On python versions below 3.10 the clumsy Union from typing is to be used in type annotations.

TypeError: unsupported operand type(s) for |: 'type' and 'type'

#1 Fix the failing uname report on windows 10 days ago

Comment by ~sthagen on ~sthagen/versioalueet

REPORTED RESOLVED FIXED

#1 Fix the failing uname report on windows 10 days ago

Comment by ~sthagen on ~sthagen/versioalueet

Fixed in version 2025.1.6

#1 Fix the failing uname report on windows 10 days ago

Comment by ~sthagen on ~sthagen/versioalueet

The next release will trial the following slightly more informative windows variant:

if not platform.platform(aliased=True, terse=True).lower().startswith('windows'):
        os_uname = os.uname()
        os_sysname = os_uname.sysname
        os_nodename = os_uname.nodename
        os_version = os_uname.version
    else:
        pf_uname = platform.uname()
        os_sysname = pf_uname.system
        os_nodename = pf_uname.node
        os_version = pf_uname.version