Mat Roscoe
Mat Roscoe
Out of curiosity what are the major hurdles you see to it being the best candidate for fast logging? Adding a benchmark test suite could help evaluate change impacts moving...
I was able to get part of the way there. ``` yaml - repo: https://github.com/PyCQA/bandit rev: 1.7.4 hooks: - id: bandit args: ["-c", "pyproject.toml"] ``` in my `pre-commit.yaml` file works...
@RNKuhns Sorted it! Make this your entry to `.pre-commit-config.yaml` ```yaml - repo: https://github.com/PyCQA/bandit rev: 1.7.4 hooks: - id: bandit args: ["-c", "pyproject.toml"] additional_dependencies: [ "bandit[toml]" ] ```
@hgrecco I have done profiling, Pint (`0.20.1`) is currently eating up 80-90% of the processing time with the majority of that being spent in the `to()` method (/home/ubuntu/.pyenv/versions//lib/python3.11/site-packages/pint/facets/plain/quantity.py:520). > **Note**...
@hgrecco there is a mix of Quantities that are non-dimensional as well as non-temperature based units. It is a mix of ("A", "V", "kW", "second")
so a minor update related to another issue I had opened (https://github.com/hgrecco/pint/issues/1735), when I updated how we create all our Quantities to use the parser as you suggest along with...
I could definitely help out with that, we are using Pint in an application and so I am trying to weigh spending my time re-writing something similar that meets our...
100% agree with you and we would in no way be looking for feature parity. My preference would be to help you out if at all possible instead of just...
@hgrecco I threw together a quick proof of concept any chance I could get a branch that I can push to something like `poc/pytest-benchmark`? ``` shell -------------------------------------------------------------------------------------------- benchmark: 3 tests...
awesome, I wasn't converting existing benchmarks as they were a bit difficult for me to follow I was adding it to some of the existing pytest functions that covered more...