Alexander Shadchin
Alexander Shadchin
For me work next patch ```python # The cache expires in the future import freezegun.api orig_value = freezegun.api.call_stack_inspection_limit freezegun.api.call_stack_inspection_limit = 0 with freeze_time("9999-01-01"): check.run_threads(num_threads) self.assert_cached(check, 2 * num_threads) self.assert_cached(check, 2...
this commit breaks - https://github.com/aio-libs/aiohttp/commit/cf641aa01aed6728717bd4abc306aaeb6d719573
After replace https://github.com/aio-libs/aiohttp/blob/3.8/aiohttp/connector.py#L1212 `runtime_has_start_tls = self._loop_supports_start_tls()` -> `runtime_has_start_tls = False` proxy works fine
perhaps something similar needs to be done here ``` runtime_has_start_tls = False if req.proxy.scheme != "https" else self._loop_supports_start_tls() ```
In `xarray 24.3.0` too ``` >>> import xarray >>> xarray.__version__ '2024.3.0' >>> import xarray.core.datatree Traceback (most recent call last): File "", line 1, in File "/home/shadchin/arc/arcadia/contrib/python/xarray/xarray/core/datatree.py", line 34, in from...
``` $ tar -tf xarray-2024.3.0.tar.gz | grep datatree_ (empty) $ unzip -l xarray-2024.3.0-py3-none-any.whl | grep datatree_ (empty) ```
Hi! Can you make a release with this fix?
@phihag Can you merge this PR?