Casper da Costa-Luis

Results 737 comments of Casper da Costa-Luis

is this code running in django or similar? And does downgrading just `tqdm` to 4.19.4 fix it?

I can confirm the work-around from @sfc-gh-jrieke still works (hardcode a global patch, which is fine in e.g. a docker container). ```py from pathlib import Path import streamlit as st...

Oh I self-host, I don't use the community cloud as I find it far too unreliable. Presumably it doesn't work on the community cloud due to file permissions.

FYI work-around https://github.com/streamlit/streamlit/issues/6567#issuecomment-2143512104

I currently manually run roughly: ```sh ssh tomography.stfc.ac.uk 'cd conda && conda-mirror --upstream-channel {ccpi,intel} && conda index' ``` but we can easily: 1. make our CI upload packages to `tomography.stfc.ac.uk`...

leaving open until we update the docs (`-c https://tomography.stfc.ac.uk/conda` in lieu of `-c https://software.repos.intel.com/python/conda -c ccpi`)

Note from #1914: > - upload to `anaconda -c ccpi` (on master->`dev`, on tag->`main`) > - upload to `conda -c https://tomography.stfc.ac.uk/conda` (on tag)

rebased after #1876; all tests passing now.

currently failing due to: ```py The following packages are incompatible ├─ pydata-sphinx-theme >=0.15.3 is installable and it requires │ └─ sphinx >=5.0 , which can be installed; └─ sphinx-panels is...

I even tried applying a patch to [`tensorboard_plugin_3d/plugin.py`](https://github.com/KitwareMedical/tensorboard-plugin-3d/blob/main/tensorboard_plugin_3d/plugin.py): ```patch 99c99 < if tag.startswith('image'): --- > if 'image' in tag: 101c101 < elif tag.startswith('label'): --- > elif 'label' in tag: 195c195...