LibrePCB / librepcb-parts-generator

A collection of scripts to generate parts for the LibrePCB default library
MIT License
7 stars 14 forks source link

Add dependency "numpy < 2" #135

Closed ubruhin closed 4 months ago

ubruhin commented 4 months ago

Installing cadquery now installs the dependency numpy 2.x, which is not compatible anymore and thus breaks CI. So let's add it as a direct dependency to ensure a v1.x version gets installed.

Not sure if this is the best way, but at least it fixes CI...

rnestler commented 4 months ago

Not sure if this is the best way, but at least it fixes CI...

Well better would be to fix cadquery and update to a fixed version...

rnestler commented 4 months ago

A lock file would also be nice, but that would require us to use something like https://python-poetry.org/ (which is nice IMO)