Mattia Almansi
Mattia Almansi
If you need to install this PR in an existing environment, this command worked fine for me: ``` pip install --upgrade --force-reinstall git+https://github.com/bopen/cdsapi.git@COPDS-1531-beta-api ```
It should be an easy fix. From `pytest` docs: For example: ``` with pytest.raises(TimeoutError, message="Client got unexpected message"): wait_for(websocket.recv(), 0.5) ``` Becomes: ``` with pytest.raises(TimeoutError): wait_for(websocket.recv(), 0.5) pytest.fail("Client got unexpected...
Same here - it might be a NumPy 2.0-related issue that is not caught by CI
To give some context: I encountered a similar issue recently, and downgrading numpy resolved it. I plan to open a ticket about this, but I don't have a MRE at...
Not sure what's causing the issue, but I can confirm that downgrading numpy fixes it.
`conda activate` works
Hi @andersy005, yes I'm getting the same error...
This is all I get: `$ jupyter-forward archer2 --conda-env jupyter --port 8181` ``` ******************************** Authentication ******************************** Authenticating user (malmans) from client (mattia-XPS-13-9380) to remote host (login.archer2.ac.uk) Password: ✅ The client...
Conflicts with develop fixed, this is ready for review. The idea is to normalize the requests to optimize caching: 1. len 1 iterables are squeezed (probably I could have done...
I thought about it, but I have 2 concerns: 1. This would trigger 6 requests rather than just 2: ```python from_source("cds", ..., variable=["1", "2", "3", "4"], split_on={"variable": 2}) from_source("cds", ...,...