Niko Fink
Niko Fink
With the [current alpha](https://pypi.org/project/ics/0.8.0.dev0/), you should simply be able to subclass `Event` in an `attrs`-compliant manner and the properties should be picked up automatically. ```python @attr.s(eq=True, order=False) # order methods...
I guess you could even simplify this, as the `...Attrs` classes are only internal workarounds to still allow custom init methods in older versions of attrs: ```python @attr.s class MyObj(ics.Component):...
Unfortunately, we can't help you without being able to reproduce the problem. See [here](https://stackoverflow.com/help/minimal-reproducible-example) for guidelines on how to make this reproducible for us. Note that while the guide talks...
I assume this is using ics.py v0.7 as it is probably a problem with arrow, could you retry with v0.8 (from GitHub or the current PyPi Alpha release)?
Then this probably also happens when you directly pass this to `dateutil`s ical vtimezone [parser](https://dateutil.readthedocs.io/en/stable/tz.html#dateutil.tz.tzical)? In v0.8 we are no longer wrapping the whole dateutil vtimezone parser, but we still...
You could try generating an Event as you want it in Outlook, exporting it to ics and parsing that with ics.py. Then programmatically reproducing this result yields something that Outlook...
My recommendation would be to migrate to 0.8. It removed arrow as that caused multiple issues with time zones and local time stamps, but it also added a revamped parser,...
Yep, docs will still need quite some work for the new version, thanks for bringing this up! Could you also post your code for creating the repeating event in the...
Differences in the SSO login flow are likely the cause of this. The POST data sent for Uni Passau can be found in the (possibly outdated) implementation of the flow...
Packaging python code can unfortunately be pretty annoying. :/ An easy solution to this might be in https://github.com/noirbizarre/setuptools-meta/issues/1. As an alternative, one could think about migrating the `setup.py` definitions to...