* Try OCP 7.8.1 * Update meta.yaml * Fix hash * Update vis.py * Update vis.py * Update appveyor.yml * Run only tests/test_exporters.py * Fix pytest invocation * typo fix * Reenable all tests * Reenable mypy * Skip mypy again * Use released ocp * Reenable mypy * mypy fixes/workarounds for vtk * Update setup.py fro 7.8.1
42 lines
722 B
YAML
42 lines
722 B
YAML
package:
|
|
name: cadquery
|
|
version: {{ environ.get('PACKAGE_VERSION') }}
|
|
|
|
source:
|
|
path: ..
|
|
|
|
build:
|
|
string: {{ GIT_DESCRIBE_TAG }}_{{ GIT_BUILD_STR }}
|
|
noarch: python
|
|
script: python setup.py install --single-version-externally-managed --record=record.txt
|
|
|
|
requirements:
|
|
build:
|
|
- python >=3.9
|
|
- setuptools
|
|
run:
|
|
- python >=3.9
|
|
- cadquery/label/dev::ocp=7.8.1
|
|
- vtk=*=qt*
|
|
- pyparsing >=2.1.9
|
|
- ezdxf>=1.3.0
|
|
- ipython
|
|
- typing_extensions
|
|
- nlopt
|
|
- multimethod >=1.11,<2.0
|
|
- casadi
|
|
- typish
|
|
|
|
test:
|
|
requires:
|
|
- pytest
|
|
- docutils
|
|
- path
|
|
source_files:
|
|
- tests/
|
|
commands:
|
|
- pytest -v
|
|
|
|
about:
|
|
summary: CadQuery - scripted CAD based on OCCT
|