Julian Taylor
Julian Taylor
hm the highlighter is still working for me with the patch, what kind of files are you looking at?
at least an update to net-ssh 6.2 should be done which supports rsa-sha2-512 and rsa-sha2-256 host_key algorithms which are required to connect to newer distributions in default configuration (debian bookworm+)...
as I recall that flag was added by default by some ancient python versions and spread into other python build systems like numpy.distutils, mostly it is added just in case...
note debian based distributions build without -fno-strict-aliasing what errors are you getting? regardless if you set that flag or not, these should be fixed.
No patches changing flags https://salsa.debian.org/python-team/packages/numpy/ They are still on 1.24, its not set there at least when built with `setup.py build` If you added the flag afterwards I guess it...
the slow part is the regex engine, unless viml also exchanges that or reverts the default back to vims old engine (set re=1 I think) a JIT is not going...
you may be able to speed some things up by only searching for words in the displayed file instead of all, but the extra check is typically not worth it...
there is also a way to choose the old regex engine for specific regexes only this was required for e.g. the yaml syntax highlighting, the syntax required can be found...
A non-cascading delete could be done, we do that to resize persistentvolumes attached to prometheus instances (in this case not operator managed). Our script to do this looks about like...
maybe something as simple as this is good?: ```python --- a/kubernetes/client/api_client.py +++ b/kubernetes/client/api_client.py @@ -638,6 +638,7 @@ class ApiClient(object): value = data[klass.attribute_map[attr]] kwargs[attr] = self.__deserialize(value, attr_type) + kwargs["local_vars_configuration"] = self.configuration...