Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pybind11
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
pybind11
Commits
fab881ca
Commit
fab881ca
authored
Oct 18, 2015
by
Wenzel Jakob
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
appveyor CI script
parent
b1b71402
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
38 additions
and
6 deletions
+38
-6
.appveyor.yml
+16
-0
README.md
+2
-1
example/example10.py
+5
-1
example/example7.py
+6
-1
example/run_test.py
+9
-3
No files found.
.appveyor.yml
0 → 100644
View file @
fab881ca
version
:
1.0.{build}
os
:
Visual Studio 2015
clone_folder
:
C:\projects\pybind11
branches
:
only
:
-
master
install
:
-
cinstall
:
python
build_script
:
-
echo Running cmake...
-
cd c:\projects\pybind11
-
cmake -G "Visual Studio 14 2015 Win64" -DPYTHON_INCLUDE_DIR:PATH=C:/Python34-x64/include -DPYTHON_LIBRARY:FILEPATH=C:/Python34-x64/libs/python34.lib -DPYTHON_EXECUTABLE:FILEPATH=C:/Python34-x64/python.exe
-
set MSBuildLogger="C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
-
set MSBuildOptions=/v:m /p:Configuration=Release /logger:%MSBuildLogger%
-
msbuild %MSBuildOptions% pybind11.sln
-
ctest -C "Release"
README.md
View file @
fab881ca
...
...
@@ -2,8 +2,9 @@
# pybind11 — Seamless operability between C++11 and Python
[

](https://travis-ci.org/wjakob/pybind11)
[

](http://pybind11.readthedocs.org/en/latest/?badge=latest)
[

](https://travis-ci.org/wjakob/pybind11)
[

](https://ci.appveyor.com/project/wjakob/pybind11)
**pybind11**
is a lightweight header-only library that exposes C++ types in Python
and vice versa, mainly to create Python bindings of existing C++ code. Its
...
...
example/example10.py
View file @
fab881ca
...
...
@@ -4,7 +4,11 @@ import sys
sys
.
path
.
append
(
'.'
)
import
example
import
numpy
as
np
try
:
import
numpy
as
np
except
ImportError
:
print
(
'NumPy missing'
)
exit
(
0
)
from
example
import
vectorized_func
from
example
import
vectorized_func2
...
...
example/example7.py
View file @
fab881ca
...
...
@@ -4,7 +4,12 @@ import sys
sys
.
path
.
append
(
'.'
)
from
example
import
Matrix
import
numpy
as
np
try
:
import
numpy
as
np
except
ImportError
:
print
(
'NumPy missing'
)
exit
(
0
)
m
=
Matrix
(
5
,
5
)
...
...
example/run_test.py
View file @
fab881ca
...
...
@@ -25,7 +25,8 @@ def sanitize(lines):
line
=
line
.
strip
()
if
sys
.
platform
==
'win32'
:
lower
=
line
.
lower
()
if
'constructor'
in
lower
or
'destructor'
in
lower
or
'ref'
in
lower
:
if
'constructor'
in
lower
or
'destructor'
in
lower
\
or
'ref'
in
lower
:
line
=
""
lines
[
i
]
=
line
...
...
@@ -40,11 +41,16 @@ if path != '':
os
.
chdir
(
path
)
name
=
sys
.
argv
[
1
]
output_bytes
=
subprocess
.
check_output
([
sys
.
executable
,
name
+
".py"
])
output_bytes
=
subprocess
.
check_output
([
sys
.
executable
,
name
+
".py"
],
stderr
=
subprocess
.
STDOUT
)
output
=
sanitize
(
output_bytes
.
decode
(
'utf-8'
))
reference
=
sanitize
(
open
(
name
+
'.ref'
,
'r'
)
.
read
())
if
output
==
reference
:
if
'NumPy missing'
in
output
:
print
(
'Test "
%
s" could not be run.'
%
name
)
exit
(
0
)
elif
output
==
reference
:
print
(
'Test "
%
s" succeeded.'
%
name
)
exit
(
0
)
else
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment