Hernan Grecco
Hernan Grecco
Cannot cross compile (host: macos, target: x86_64-unknown-linux-musl or x86_64-unknown-linux-gcc)
When trying to cross compile ring, I get the following: **host**: macos **target**: x86_64-unknown-linux-musl ``` error: failed to run custom build command for `ring v0.16.20` Caused by: process didn't exit...
I recently toyed with the idea of building a parser that makes a good use of typing. It is not a typical parser. Briefly, you provide a `from_string` classmethod` for...
Thanks to #768 we have can improve the Group and Systems API. Please propose ideas as independent messages here. Please upvote/downvote or suggest modifications
With [PEP560](https://www.python.org/dev/peps/pep-0560/) we could now try to have a better annotations experience for Pint. Briefly, my proposal would be to do something like this ```python class Model: value: Quantity['m/s'] ```...
I have found that with a minor change to `Context` ```diff diff --git a/pint/context.py b/pint/context.py index 59ea9cf..2a8376b 100644 --- a/pint/context.py +++ b/pint/context.py @@ -118,6 +118,15 @@ class Context: #: Used...
This is just a placeholder issue to obtain feedback about the current state of the docs: 1. Are the docs clear enough? 2. Are the examples useful and real? 3....
I have just released `Pint-Pandas 0.1` So first, let me publicly thank @andrewgsavage, @znicholls and @sigvaldm for the awesome work you have done to code, discuss and push this package....
Awesome package. I was about to build something until I found this! Congrats I have a something that looks like this ``` - __init__.py - a.py - b.py - c.py...
The examples in the repo end with something like: ``` rust let res = listener.listen(|u| { }) if let Err(e) = res { println!("An error occured: {}", e); } ```...
I am cross posting this here from https://github.com/hgrecco/pint/issues/24 It would be nice to transform your umath module in a function plus a function call ``` import math def wrap_module(module, wrapped,...