David Stansby

Results 550 comments of David Stansby

Another update, I can reproduce this with the following small example: ```python from fancylog import fancylog from multiprocessing import Pool import cellfinder_core if __name__ == "__main__": fancylog.start_logging( '.', cellfinder_core, log_header="LOG",...

Yes, this is just to get the tests working for now whilst the multiprocessing issue is sorted

Oh, I also realised that the `coredev` (ie. with development version of `cellfinder-core`) were always being run, which wasn't what I intended as it doubles test times, so I'm going...

That makes sense - I think when I opened this I didn't understand that a `GeoSeries` isn't just a single 'row' of a `GeoDataFrame`, but the `geometry` column instead. I...

> If you want to retain a (Geo)DataFrame when selecting a row, you use a list of one integer: Fab, thanks for this tip! I wondering if it's worth a...

Sorry for the long time gone, I'm trying this again with the same project and asv 0.4.1, and I'm still having the same problem. In answer to your questions: ```...

Yep, other projects and the minimal quickstart one works fine. The issue on my project is when I import the project package in `benchmarks.py` - will try and isolate if...

I'm strugging to get `asv` working with a project that requires `setuptools_scm` at build time. Setting ``` "build_command": ["python -mpip install setuptools_scm", "python setup.py build", "PIP_NO_BUILD_ISOLATION=false python -mpip wheel --no-deps...

Ah my bad, changing "python -mpip install setuptools_scm" to "python -mpip install extension_helpers" fixed it; hopefully my above comment is helpful for anyone coming across similar issues.

I've managed to get this working by turning of SSE: ```python mkdir build cd build cmake ../ -D USE_SSE=OFF make ```