Skip to content

Commit b334d3e

Browse files
committed
Merge branch 'dev' into main
2 parents 557e1bb + a93aeeb commit b334d3e

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

environment.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ channels:
33
- conda-forge
44
dependencies:
55
- python>=3.8,<=3.12
6+
- numpy<2
67
- ipython
78
- ocp=7.7.2
89
- vtk=*=qt*
@@ -27,7 +28,7 @@ dependencies:
2728
- appdirs
2829
- pip
2930
- recommonmark
30-
- cadquery
31+
- cadquery>=2.4
3132
- pip:
3233
- sphinx-toolbox>=3.5.0
3334

requirements.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
cadquery
1+
# current caadquery 2.4 has an issue with numpy 2.0
2+
# see https://github.com/CadQuery/cadquery/issues/1616
3+
numpy<2
4+
cadquery>=2.4

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
author_email='[email protected]',
1212
packages=find_packages(),
1313
install_requires=[
14-
'cadquery'
14+
'numpy<2',
15+
'cadquery>=2.4'
1516
],
1617
python_requires=">=3.8",
1718
classifiers=[

0 commit comments

Comments
 (0)