File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ name: cadquery
2
2
channels :
3
3
- cadquery
4
4
- conda-forge
5
- - defaults
6
5
dependencies :
7
6
- python>=3.8
8
7
- ipython
@@ -23,9 +22,8 @@ dependencies:
23
22
- nlopt
24
23
- path
25
24
- casadi
25
+ - multimethod >=1.7,<2.0
26
26
- pip
27
27
- pip :
28
- - " --install-option=\" --no-deps\" "
29
- - " --editable=."
30
- - sphinxcadquery
31
- - multimethod>=1.7,<2.0
28
+ - --editable=.
29
+ - git+https://github.com/CadQuery/OCP-stubs.git
Original file line number Diff line number Diff line change 21
21
is_rtd = "READTHEDOCS" in os .environ
22
22
is_appveyor = "APPVEYOR" in os .environ
23
23
is_azure = "CONDA_PY" in os .environ
24
+ is_conda = "CONDA_PREFIX_1" in os .environ
24
25
25
- # Only include the installation dependencies if we are not running on RTD or AppVeyor
26
- if not is_rtd and not is_appveyor and not is_azure :
26
+ # Only include the installation dependencies if we are not running on RTD or AppVeyor or in a conda env
27
+ if not is_rtd and not is_appveyor and not is_azure and not is_conda :
27
28
reqs = [
28
29
"cadquery-ocp>=7.6,<7.7" ,
29
30
"ezdxf" ,
You can’t perform that action at this time.
0 commit comments