Hi
I switched to python 3.13 and cadquery 2.7.0.
If I install the library using pip install cadquery, the installation works fine
However, when I integrate cadquery in a pyproject.toml file of my project which has multiple dependencies, this does not work when compiling my full project. I get a conflict with a dependency of cadquery on a version of vtk which no longer exists in Python 3.13.
What I understand is that:
- cadquery 2.7.0 has a dependency on cadquery-ocp ">=7.8.1,<7.9"
- cadquery-ocp ">=7.8.1,<7.9" has a dependency on vtk = 9.3.1
But, vtk = 9.3.1 does not exist on Python 3.13 - only more recent versions of vtk do.
Am I doing something wrong ?
Thanks.
LD.