Results 114 comments of Greg Werbin

This is definitely a needed feature. But more generally it'd be nice to have more control over what is and isn't emitted by `conda env export`. E.g. the `name` and...

Here's a script I've been using for this purpose: https://gist.github.com/gwerbin/dab3cf5f8db07611c6e0aeec177916d8 I'll try to block out some time to draft a PR that incorporates this behavior into `conda env export`.

Part of the problem with Pip is that it still after all these years has no stable Python API, and users are specifically discouraged from trying to use any of...

> ``` > prim__listToVect : List t -> (Nat, Vect n t) > fastListToVect : List t -> (n ** Vect n t) > ``` > > These two type...

@devforfu One thing I just thought of is how to handle mappers like this: ```python pipeline = Pipeline([ ('vectorizer', DataFrameMapper([ ('document_contents', [TextCleaner(), CountVectorizer()]) ], df_out=False)), ('classifier', MultinomialNB()) ]) ``` (I...

@dukebody I'm willing, but can't make any guarantees on a timeline. I've been pretty busy lately and don't want to commit to anything I can't deliver. I would also need...

Sorry to bump an old thread, but here's another use case: generating the name of the Sdist and Wheel files _before_ actually building them (when possible, e.g. when a dynamic...

If someone wanted to work on contributing this feature, is there any particularly good place to start? Any internals to read, etc? It might also be nice to have a...

**EDIT**: sorry for the noise! I needed `llibuuid-devel`, not `uuid-devel`. Build and install went just fine. Also I found someone has already made a Fedora RPM for Chez, only 2...

When considering other "version managers", it might also be worth looking at: * [ASDF-VM](https://asdf-vm.com/) (which has a Python plugin): I think this only supports exact versions. * [Choosenim](https://github.com/dom96/choosenim): Supports a...