Edward Barnard

Results 7 comments of Edward Barnard

Here is the error that I get. It looks like `key_from_filename` is `None` during some part of the registration when `--prefix` is set. See `tiled/client/register.py:166` Interestingly `settings` appears to have...

The following diff fixes this immediate problem, but returns me back to the original problem of the container not existing. ```diff --- a/tiled/client/register.py +++ b/tiled/client/register.py @@ -163,7 +163,7 @@ async...

I will certainly look into it! From my investigations, getting number of cores is relatively straightforward in the standard packages: ``` import multiprocessing multiprocessing.cpu_count() # or import os os.cpu_count() ```...

Blosc2 version ``` (tiled-client) esbarnard@esbstudio ~ % conda list blosc2 # packages in environment at /Users/esbarnard/opt/anaconda3/envs/tiled-client: # # Name Version Build Channel blosc2 3.0.0 pypi_0 pypi ```

Upon more investigation this is a bug in the `py-cpuinfo` that fails specifically on some macs / OS versions. tested examples: | Computer | macOS | python | works? |...

`pip uninstall blosc2` does the trick for now. I'll submit a issue to `Blosc2` and `py-cpuinfo` Blosc2 Issue posted: https://github.com/Blosc/python-blosc2/issues/356

Looking at the `tiled.commandline._serve` file, this may be more complex to change, due to the creation of the custom `web_app` object being dynamically generated with `build_app` rather than a direct...