generated from cubao/pybind11-rdp
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add convex_hull * update * convex hull * normalize index * updatec * bind more * fix spelling * test include colinear * more tests * better API * ready to release * update docs * update docs * scipy to test requires
- Loading branch information
1 parent
ce9926b
commit b67c38e
Showing
16 changed files
with
463 additions
and
238 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,4 @@ _generate/ | |
*env* | ||
wheelhouse | ||
!test.py | ||
site |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
mkdocs>=1.3.0 | ||
mkdocs==1.4.2 | ||
mkdocs-include-markdown-plugin==4.0.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Usage | ||
|
||
## test_basic.py | ||
|
||
```python | ||
{% | ||
include-markdown "../tests/test_basic.py" | ||
comments=false | ||
%} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -122,7 +122,7 @@ def build_extension(self, ext): | |
# logic and declaration, and simpler if you include description/version in a file. | ||
setup( | ||
name="concave_hull", | ||
version="0.0.5", | ||
version="0.0.6", | ||
author="tzx", | ||
author_email="[email protected]", | ||
url="https://concave-hull.readthedocs.io", | ||
|
@@ -133,6 +133,6 @@ def build_extension(self, ext): | |
ext_modules=[CMakeExtension("concave_hull")], | ||
cmdclass={"build_ext": CMakeBuild}, | ||
zip_safe=False, | ||
install_requires=["numpy", "scipy"], | ||
extras_require={"test": ["pytest>=6.0"]}, | ||
install_requires=["numpy"], | ||
extras_require={"test": ["pytest>=6.0", "scipy"]}, | ||
) |
Oops, something went wrong.