Open paulmueller opened 1 year ago
Yes, will do! Once my cronjob on the analysis server is running I will start taking 'the hint' :)
@paulmueller dclab
still have py38 as minimum, so str | pathlib.Path
won't work. Are you happy with Union
being used where necessary? I see you have used it qute a bit in dclab already.
I would rather like |
and force everyone to use Python 3.10. It's just easier to read and I think we can expect it from the users.
I would rather like
|
and force everyone to use Python 3.10. It's just easier to read and I think we can expect it from the users.
Then I guess this should be done in setup.py
?
We actually don't have to drop support for Python<3.10. We can just do
from __future__ import annotations
in every file where we use |
. This way we don't have to drop support for older Python versions...
We actually don't have to drop support for Python<3.10. We can just do
from __future__ import annotations
in every file where we use
|
. This way we don't have to drop support for older Python versions...
You learn something new everyday!
I will add type hints to the files:
dclab/rtdc_dataset/feat_anc_plugin/plugin_feature.py
dclab/rtdc_dataset/feat_temp.py
@maxschloegel keep up with that!!