2-5
2-5
The `aim` test suite is now passing. Two tests are being skipped. One of them was because I didn't have `dvc` installed. I installed it, and it fails, but it...
I have added `/aim/docs/source/using/windows.md` with full instructions on how to install `aim` on Windows. **It assumes that these two PRs are merged in**. Until then, you can replace `git clone...
I've added a few more commits to this PR to bundle the libs to make it work with the aim package. Now both aim and aimrocks build.
Only with Windows Terminal so far. And the Microsoft Store icon now that I look closely at the screenshots. Switching from Light to Dark, WT remains Light:  Switching from...
I've hit this too. I have a pretty default Windows 11, with PowerShell core, but with dev mode disabled: ```powershell PowerShell 7.4.4 PS C:\Users\user> powershell -c "irm https://astral.sh/uv/install.ps1 | iex"...
Yes, I'm using eager task factory: ```python loop = asyncio.get_running_loop() loop.set_task_factory(asyncio.eager_task_factory) ``` aiohttp 3.9.5 worked fine with the same Python 3.12 and the eager task factory, 3.10 is triggering the...
@bdraco Sorry, I wouldn't know how to report this bug upstream. I don't know what a `staggered_race` is, why what we see here is a Python bug and not an...
I meant theming the app itself, not the PDF content. Basically automatically choosing between Settings/Theme/Light or Settings/Theme/Dark based on the current Windows setting. I am using an automatic Light/Dark system...
> Leaving open as a request but unless you can code such ability to not disturb status quo will perhaps be a long time coming. There is an unofficial way...
FWIW VS Code injects a `__vsc_ipynb_file__` variable in the kernel (in `globals()`) which contains the path to the notebook: ```python In: __vsc_ipynb_file__ Out: 'd:\\DataScience\\my_notebook.ipynb' ``` https://github.com/microsoft/vscode-jupyter/issues/8475 Maybe this should be...