Max Bachmann

Results 300 comments of Max Bachmann
trafficstars

@henryiii I would like my library to require only the C++ redistributable that ships alongside CPython. Currently I am using `windows-latest` as well, but this can lead to a newer...

## Problem The foundational problem is how this algorithm is "supposed" to find the optimal alignment. It's supposed to search for a substring in the longer sequence, that is as...

> One thing you can do to help the algorithm skip more alignments. This really just decreases runtime by a percentage and doesn't solve the problem of the algorithm being...

> This would be my concern as well, although I don't think it's a common thing to have 2 independent versions of a custom allocator in the same process. Just...

> Great -- the latest changes make the slot allocation dynamic (at the cost of one more load) which accomodates having multiple instances of mimalloc active. Right now we are...

I am aware of the `scikit-build-core` project and long term I will want to migrate to it. However I wanted to wait until it supports all the features required to...

https://github.com/rapidfuzz/RapidFuzz/blob/main/setup.py is the setup script This behaves in the following way: 1) when packaging it should always build the C-Extension and fail hard if it fails to build since that's...

> The default is to try the system first and then fallback to pip. Version checking is implemented. Changing the preference order would be tricky for packagers. Yes but this...

> How are the pure-python files supposed to work in that case, maybe there is a design using multi-python project like hatch + hatchling have in their repository. I install...

I assume with this I could implement my handling as: ``` [tool.scikit-build] wheel.cmake = true [[tool.scikit-build.overrides]] if.no-system-cmake = "known-wheel" wheel.cmake = false [[tool.scikit-build.overrides]] if.failed = true wheel.cmake = false [[tool.scikit-build.overrides]]...