Jean Plumail

Results 5 issues of Jean Plumail

This doesn't work ```python import dxcam camera = dxcam.create(output_color="GRAY") camera.start(video_mode=True) frame = camera.get_latest_frame() ``` I got this error : ``` Traceback (most recent call last): File "C:\Users\jeanp\miniconda3\envs\tm\lib\site-packages\dxcam\dxcam.py", line 179, in...

bug
good first issue

**Describe the bug** For projects with extra dependencies defined in the `pyproject.toml` file, grayskull's `--extras-require-all` option doesn't work. **To Reproduce** ```bash $ grayskull pypi --extras-require-all dask=2023.10.0 ``` **Expected behavior** I...

bug

FYI [this issue](https://github.com/AllenCellModeling/aicsimageio/issues/495) may cause trouble to this package. Because it uses `aicsimageio[all]` https://github.com/AllenCellModeling/napari-aicsimageio/blob/main/pyproject.toml#L48 the wrong version of `tifffile` is installed, leading to bugs. ## Description Reading a Tiff file...

bug

I got an error when trying to distribute my Tkinter app: ``` _tkinter.TclError: Can't find a usable init.tcl in the following directories: /home/plumail/.local/share/pyapp/spfluo-app/7904589091198436804/0.1.12/bin/../lib/tcl8.6 /tools/deps/lib/tcl8.6 /home/plumail/.local/share/pyapp/spfluo-app/7904589091198436804/0.1.12/lib/tcl8.6 /home/plumail/.local/share/pyapp/spfluo-app/7904589091198436804/lib/tcl8.6 /home/plumail/.local/share/pyapp/spfluo-app/7904589091198436804/0.1.12/library /home/plumail/.local/share/pyapp/spfluo-app/7904589091198436804/library /home/plumail/.local/share/pyapp/spfluo-app/7904589091198436804/tcl8.6.12/library /home/plumail/.local/share/pyapp/spfluo-app/tcl8.6.12/library...

I create a fresh venv: ``` python3 -m venv venv source venv/bin/activate pip install pcst_fast numpy # numpy 2.1.0 gets installed ``` bug.py : ```py import pcst_fast import numpy.testing as...