Andrew Kent

Results 25 comments of Andrew Kent

The PR builds and passes tests on my machine, but the size of compiled libraries (e.g. `math` and `plot`) seem to have increased when compared to the nightly build from...

Here are gists with the aforementioned files: `rectangle_rkt.dep` on [nightly](https://gist.github.com/pnwamk/3c91dc850edce43ecdce2645177afbd2) and [reduce-expansion](https://gist.github.com/pnwamk/e2c170d0ed64ae6cb8054d7235f7d76f) `vector_rkt.zo` (via `raco decompile ...`) on [nightly](https://gist.github.com/pnwamk/dda3597990f4009696f958544cb8d821) and [reduce-expansion](https://gist.github.com/pnwamk/b21d70b6dc0f5379be4fbbea7fb5a8e0)

Here's the nightly vs reduce-expansion diff for vector_rkt.zo: https://gist.github.com/pnwamk/b3db1aa5ce8496c362feef6ae2b125d0

It looks at a glance like library sizes (at least `math` and `plot`) have _slightly_ increased: ``` Nightly -> PR ------------------- 9.2M -> 10M (math) 8.0M -> 8.5 (plot) ```

Actually the same error seems to be reproducible with a `Dockerfile`: ``` FROM python:3.9 RUN pip3 install pqcrypto ``` Running `docker build .` with that file yields: ``` [+] Building...