Seth Morton

Results 75 comments of Seth Morton

> oh one more thing, just a thought but someone could also implement a windows-ish and UNIX-ish sorting that would allow users to get the desired results on most cases...

In all four of your examples, under-the-hood `natsort` is treating the values as the same: - `"1"` -> `1` - `'01"` -> `1` - `float("nan")` -> `float("-inf")` - `None` ->...

I can think of easy ways to solve the NaN/`None` issue and would be open to fixing that, but the "1"/"01" issue is much more challenging. There is no easy...

Is there a way to disable this warning? For example, I have gotten the warning, and I acknowledge that this behavior will change and am OK with it, can I...

@jbrockmendel Yes, that is what I ended up doing, but that's not what I was hoping. To the best of my knowledge, other warnings from `pandas` are things that I...

Folks, you can make a git commit as a dependency in your `requirements.txt`: ``` $ cat requirements.txt git+https://github.com/CITGuru/PyInquirer.git@9d598a53fd17a9bc42efff33183cd2d141a5c949 ``` I am using this in one of my projects. No need...

> `error: Microsoft Visual C++ 14.0 is required. Get it with "Build Tools for Visual Studio": https://visualstudio.microsoft.com/downloads/` It looks like it is not building the `regex` module because you are...

This would get fixed when #90 is completed, because `regex` was removed as a dep.

I notice that this issue is not part of any milestone. Is there no plan to improve/create documentation?

Lol - I realize it's been two years, but I have started working on this again. I have thought a lot about backwards compatibility of this, and I have decided...