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
d8c7ee00
Unverified
Commit
d8c7ee00
authored
Jul 20, 2020
by
Henry Schreiner
Committed by
GitHub
Jul 20, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci: GHA basic format & pre-commit (#2309)
parent
e2488698
Show whitespace changes
Inline
Side-by-side
Showing
60 changed files
with
108 additions
and
15 deletions
+108
-15
.github/workflows/format.yml
+19
-0
.pre-commit-config.yaml
+28
-0
CONTRIBUTING.md
+7
-2
docs/advanced/cast/index.rst
+0
-1
docs/advanced/classes.rst
+0
-0
docs/advanced/misc.rst
+0
-0
docs/advanced/pycpp/object.rst
+0
-0
docs/benchmark.py
+1
-0
docs/benchmark.rst
+0
-2
docs/conf.py
+0
-0
docs/limitations.rst
+0
-1
pybind11/__init__.py
+1
-0
pybind11/__main__.py
+1
-0
pybind11/_version.py
+1
-0
setup.py
+1
-0
tests/conftest.py
+1
-0
tests/constructor_stats.h
+0
-1
tests/test_async.py
+1
-0
tests/test_buffers.py
+1
-0
tests/test_builtin_casters.py
+1
-1
tests/test_call_policies.py
+1
-0
tests/test_callbacks.py
+1
-0
tests/test_chrono.py
+1
-0
tests/test_class.py
+1
-0
tests/test_cmake_build/test.py
+1
-0
tests/test_constants_and_functions.py
+1
-0
tests/test_copy_move.py
+1
-0
tests/test_custom_type_casters.py
+1
-0
tests/test_docstring_options.py
+1
-0
tests/test_eigen.py
+3
-2
tests/test_embed/test_interpreter.py
+1
-0
tests/test_enum.py
+1
-0
tests/test_eval.py
+1
-0
tests/test_eval_call.py
+1
-0
tests/test_exceptions.py
+1
-0
tests/test_factory_constructors.py
+1
-0
tests/test_gil_scoped.py
+1
-0
tests/test_iostream.py
+1
-0
tests/test_kwargs_and_defaults.py
+1
-0
tests/test_local_bindings.py
+1
-0
tests/test_methods_and_attributes.py
+1
-0
tests/test_modules.py
+1
-0
tests/test_multiple_inheritance.py
+1
-0
tests/test_numpy_array.py
+1
-0
tests/test_numpy_dtypes.py
+1
-0
tests/test_numpy_vectorize.py
+1
-0
tests/test_opaque_types.py
+1
-0
tests/test_operator_overloading.py
+1
-0
tests/test_pickling.py
+1
-0
tests/test_pytypes.py
+1
-0
tests/test_sequences_and_iterators.py
+1
-0
tests/test_smart_ptr.py
+1
-0
tests/test_stl.py
+1
-0
tests/test_stl_binders.py
+5
-3
tests/test_tagbased_polymorphic.py
+1
-0
tests/test_union.py
+1
-0
tests/test_virtual_functions.py
+1
-0
tools/FindEigen3.cmake
+0
-1
tools/libsize.py
+1
-1
tools/mkdoc.py
+1
-0
No files found.
.github/workflows/format.yml
0 → 100644
View file @
d8c7ee00
name
:
Format
on
:
workflow_dispatch
:
pull_request
:
push
:
branches
:
-
master
-
stable
-
"
v*"
jobs
:
pre-commit
:
name
:
Format
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v2
-
uses
:
actions/setup-python@v2
-
uses
:
pre-commit/action@v2.0.0
.pre-commit-config.yaml
0 → 100644
View file @
d8c7ee00
repos
:
-
repo
:
https://github.com/pre-commit/pre-commit-hooks
rev
:
v3.1.0
hooks
:
-
id
:
check-added-large-files
-
id
:
check-case-conflict
-
id
:
check-merge-conflict
-
id
:
check-symlinks
-
id
:
check-yaml
-
id
:
debug-statements
-
id
:
end-of-file-fixer
-
id
:
mixed-line-ending
-
id
:
requirements-txt-fixer
-
id
:
trailing-whitespace
-
id
:
fix-encoding-pragma
-
repo
:
https://github.com/Lucas-C/pre-commit-hooks
rev
:
v1.1.7
hooks
:
-
id
:
remove-tabs
exclude
:
(Makefile|debian/rules|.gitmodules)(\.in)?$
-
repo
:
https://gitlab.com/pycqa/flake8
rev
:
3.8.2
hooks
:
-
id
:
flake8
additional_dependencies
:
[
flake8-bugbear
]
exclude
:
^(docs/.*|tools/.*)$
CONTRIBUTING.md
View file @
d8c7ee00
...
...
@@ -27,11 +27,16 @@ adhere to the following rules to make the process as smooth as possible:
do add value by themselves.
*
Add tests for any new functionality and run the test suite (
``make pytest``
)
to ensure that no existing features break.
*
Please run
``flake8``
and
``tools/check-style.sh``
to check your code matches
the project style. (Note that
``check-style.sh``
requires
``gawk``
.)
*
Please run
[
``pre-commit``
][
pre-commit
]
and
``tools/check-style.sh``
to check
your code matches the project style. (Note that
``check-style.sh``
requires
``gawk``
.) Use
`pre-commit run --all-files`
before committing (or use
installed-mode, check pre-commit docs) to verify your code passes before
pushing to save time.
*
This project has a strong focus on providing general solutions using a
minimal amount of code, thus small pull requests are greatly preferred.
[
pre-commit
]:
https://pre-commit.com
### Licensing of contributions
pybind11 is provided under a BSD-style license that can be found in the
...
...
docs/advanced/cast/index.rst
View file @
d8c7ee00
...
...
@@ -39,4 +39,3 @@ the last case of the above list.
chrono
eigen
custom
docs/advanced/classes.rst
View file @
d8c7ee00
docs/advanced/misc.rst
View file @
d8c7ee00
docs/advanced/pycpp/object.rst
View file @
d8c7ee00
docs/benchmark.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
random
import
os
import
time
...
...
docs/benchmark.rst
View file @
d8c7ee00
...
...
@@ -93,5 +93,3 @@ favor.
.. only:: latex
.. image:: pybind11_vs_boost_python2.png
docs/conf.py
View file @
d8c7ee00
docs/limitations.rst
View file @
d8c7ee00
...
...
@@ -17,4 +17,3 @@ These features could be implemented but would lead to a significant increase in
complexity. I've decided to draw the line here to keep this project simple and
compact. Users who absolutely require these features are encouraged to fork
pybind11.
pybind11/__init__.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
from
._version
import
version_info
,
__version__
# noqa: F401 imported but unused
...
...
pybind11/__main__.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
from
__future__
import
print_function
import
argparse
...
...
pybind11/_version.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
version_info
=
(
2
,
5
,
'dev1'
)
__version__
=
'.'
.
join
(
map
(
str
,
version_info
))
setup.py
View file @
d8c7ee00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Setup script for PyPI; use CMakeFile.txt to build extension modules
...
...
tests/conftest.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
"""pytest configuration
Extends output capture as needed by pybind11: ignore constructors, optional unordered lines.
...
...
tests/constructor_stats.h
View file @
d8c7ee00
...
...
@@ -273,4 +273,3 @@ template <class T, typename... Values> void print_values(T *inst, Values &&...va
print_constr_details
(
inst
,
":"
,
values
...);
track_values
(
inst
,
values
...);
}
tests/test_async.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
asyncio
import
pytest
from
pybind11_tests
import
async_module
as
m
...
...
tests/test_buffers.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
io
import
struct
import
sys
...
...
tests/test_builtin_casters.py
View file @
d8c7ee00
#
Python < 3 needs this: coding=utf-8
#
-*- coding: utf-8 -*-
import
pytest
from
pybind11_tests
import
builtin_casters
as
m
...
...
tests/test_call_policies.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
pytest
from
pybind11_tests
import
call_policies
as
m
from
pybind11_tests
import
ConstructorStats
...
...
tests/test_callbacks.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
pytest
from
pybind11_tests
import
callbacks
as
m
from
threading
import
Thread
...
...
tests/test_chrono.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
from
pybind11_tests
import
chrono
as
m
import
datetime
...
...
tests/test_class.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
pytest
from
pybind11_tests
import
class_
as
m
...
...
tests/test_cmake_build/test.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
sys
import
test_cmake_build
...
...
tests/test_constants_and_functions.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
from
pybind11_tests
import
constants_and_functions
as
m
...
...
tests/test_copy_move.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
pytest
from
pybind11_tests
import
copy_move_policies
as
m
...
...
tests/test_custom_type_casters.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
pytest
from
pybind11_tests
import
custom_type_casters
as
m
...
...
tests/test_docstring_options.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
from
pybind11_tests
import
docstring_options
as
m
...
...
tests/test_eigen.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
pytest
from
pybind11_tests
import
ConstructorStats
...
...
@@ -143,7 +144,7 @@ def test_nonunit_stride_from_python():
counting_3d
=
np
.
arange
(
27.0
,
dtype
=
np
.
float32
)
.
reshape
((
3
,
3
,
3
))
slices
=
[
counting_3d
[
0
,
:,
:],
counting_3d
[:,
0
,
:],
counting_3d
[:,
:,
0
]]
for
slice_idx
,
ref_mat
in
enumerate
(
slices
)
:
for
ref_mat
in
slices
:
np
.
testing
.
assert_array_equal
(
m
.
double_mat_cm
(
ref_mat
),
2.0
*
ref_mat
)
np
.
testing
.
assert_array_equal
(
m
.
double_mat_rm
(
ref_mat
),
2.0
*
ref_mat
)
...
...
@@ -172,7 +173,7 @@ def test_negative_stride_from_python(msg):
counting_3d
=
np
.
arange
(
27.0
,
dtype
=
np
.
float32
)
.
reshape
((
3
,
3
,
3
))
counting_3d
=
counting_3d
[::
-
1
,
::
-
1
,
::
-
1
]
slices
=
[
counting_3d
[
0
,
:,
:],
counting_3d
[:,
0
,
:],
counting_3d
[:,
:,
0
]]
for
slice_idx
,
ref_mat
in
enumerate
(
slices
)
:
for
ref_mat
in
slices
:
np
.
testing
.
assert_array_equal
(
m
.
double_mat_cm
(
ref_mat
),
2.0
*
ref_mat
)
np
.
testing
.
assert_array_equal
(
m
.
double_mat_rm
(
ref_mat
),
2.0
*
ref_mat
)
...
...
tests/test_embed/test_interpreter.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
from
widget_module
import
Widget
...
...
tests/test_enum.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
pytest
from
pybind11_tests
import
enums
as
m
...
...
tests/test_eval.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
os
import
pytest
from
pybind11_tests
import
eval_
as
m
...
...
tests/test_eval_call.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
# This file is called from 'test_eval.py'
if
'call_test2'
in
locals
():
...
...
tests/test_exceptions.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
pytest
from
pybind11_tests
import
exceptions
as
m
...
...
tests/test_factory_constructors.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
pytest
import
re
...
...
tests/test_gil_scoped.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
multiprocessing
import
threading
from
pybind11_tests
import
gil_scoped
as
m
...
...
tests/test_iostream.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
from
pybind11_tests
import
iostream
as
m
import
sys
...
...
tests/test_kwargs_and_defaults.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
pytest
from
pybind11_tests
import
kwargs_and_defaults
as
m
...
...
tests/test_local_bindings.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
pytest
from
pybind11_tests
import
local_bindings
as
m
...
...
tests/test_methods_and_attributes.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
pytest
from
pybind11_tests
import
methods_and_attributes
as
m
from
pybind11_tests
import
ConstructorStats
...
...
tests/test_modules.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
from
pybind11_tests
import
modules
as
m
from
pybind11_tests.modules
import
subsubmodule
as
ms
from
pybind11_tests
import
ConstructorStats
...
...
tests/test_multiple_inheritance.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
pytest
from
pybind11_tests
import
ConstructorStats
from
pybind11_tests
import
multiple_inheritance
as
m
...
...
tests/test_numpy_array.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
pytest
from
pybind11_tests
import
numpy_array
as
m
...
...
tests/test_numpy_dtypes.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
re
import
pytest
from
pybind11_tests
import
numpy_dtypes
as
m
...
...
tests/test_numpy_vectorize.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
pytest
from
pybind11_tests
import
numpy_vectorize
as
m
...
...
tests/test_opaque_types.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
pytest
from
pybind11_tests
import
opaque_types
as
m
from
pybind11_tests
import
ConstructorStats
,
UserType
...
...
tests/test_operator_overloading.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
pytest
from
pybind11_tests
import
operators
as
m
from
pybind11_tests
import
ConstructorStats
...
...
tests/test_pickling.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
pytest
from
pybind11_tests
import
pickling
as
m
...
...
tests/test_pytypes.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
from
__future__
import
division
import
pytest
import
sys
...
...
tests/test_sequences_and_iterators.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
pytest
from
pybind11_tests
import
sequences_and_iterators
as
m
from
pybind11_tests
import
ConstructorStats
...
...
tests/test_smart_ptr.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
pytest
from
pybind11_tests
import
smart_ptr
as
m
from
pybind11_tests
import
ConstructorStats
...
...
tests/test_stl.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
pytest
from
pybind11_tests
import
stl
as
m
...
...
tests/test_stl_binders.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
pytest
import
sys
from
pybind11_tests
import
stl_binders
as
m
...
...
@@ -222,7 +223,8 @@ def test_noncopyable_containers():
for
j
in
range
(
0
,
5
):
assert
nvnc
[
i
][
j
]
.
value
==
j
+
1
for
k
,
v
in
nvnc
.
items
():
# Note: maps do not have .values()
for
_
,
v
in
nvnc
.
items
():
for
i
,
j
in
enumerate
(
v
,
start
=
1
):
assert
j
.
value
==
i
...
...
@@ -233,7 +235,7 @@ def test_noncopyable_containers():
assert
nmnc
[
i
][
j
]
.
value
==
10
*
j
vsum
=
0
for
k_o
,
v_o
in
nmnc
.
items
():
for
_
,
v_o
in
nmnc
.
items
():
for
k_i
,
v_i
in
v_o
.
items
():
assert
v_i
.
value
==
10
*
k_i
vsum
+=
v_i
.
value
...
...
@@ -247,7 +249,7 @@ def test_noncopyable_containers():
assert
numnc
[
i
][
j
]
.
value
==
10
*
j
vsum
=
0
for
k_o
,
v_o
in
numnc
.
items
():
for
_
,
v_o
in
numnc
.
items
():
for
k_i
,
v_i
in
v_o
.
items
():
assert
v_i
.
value
==
10
*
k_i
vsum
+=
v_i
.
value
...
...
tests/test_tagbased_polymorphic.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
from
pybind11_tests
import
tagbased_polymorphic
as
m
...
...
tests/test_union.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
from
pybind11_tests
import
union_
as
m
...
...
tests/test_virtual_functions.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
import
pytest
from
pybind11_tests
import
virtual_functions
as
m
...
...
tools/FindEigen3.cmake
View file @
d8c7ee00
...
...
@@ -78,4 +78,3 @@ else (EIGEN3_INCLUDE_DIR)
mark_as_advanced
(
EIGEN3_INCLUDE_DIR
)
endif
(
EIGEN3_INCLUDE_DIR
)
tools/libsize.py
View file @
d8c7ee00
# -*- coding: utf-8 -*-
from
__future__
import
print_function
,
division
import
os
import
sys
...
...
@@ -35,4 +36,3 @@ else:
with
open
(
save
,
'w'
)
as
sf
:
sf
.
write
(
str
(
libsize
))
tools/mkdoc.py
View file @
d8c7ee00
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Syntax: mkdoc.py [-I<path> ..] [.. a list of header files ..]
#
...
...
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