File tree 2 files changed +10
-5
lines changed
2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,16 @@ build:
12
12
script_env :
13
13
- CC
14
14
- CXX
15
- script : {{ PYTHON }} -m pip install . -vvv
15
+ script : |
16
+ {{ PYTHON }} -m pip install -vvv "git+https://github.com/pybind/pybind11.git@master"
17
+ {{ PYTHON }} -m pip install . -vvv --no-deps
18
+ {{ PYTHON }} -m pip uninstall -y pybind11
16
19
17
20
requirements :
18
21
build :
19
22
- {{ compiler('cxx') }}
20
23
- vs2017_{{ target_platform }} # [win]
24
+ - cmake
21
25
22
26
host :
23
27
- python
37
41
requires :
38
42
- pytest
39
43
commands :
40
- - pytest .
44
+ - pytest
41
45
42
46
about :
43
47
summary : An example project built with pybind11.
Original file line number Diff line number Diff line change 1
1
import python_example as m
2
2
3
- assert m .__version__ == '0.0.1'
4
- assert m .add (1 , 2 ) == 3
5
- assert m .subtract (1 , 2 ) == - 1
3
+ def my_simple_test ():
4
+ assert m .__version__ == '0.0.1'
5
+ assert m .add (1 , 2 ) == 3
6
+ assert m .subtract (1 , 2 ) == - 1
You can’t perform that action at this time.
0 commit comments