generated from cubao/pybind11-rdp
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix CI, use GitHub workflow to release to pypi (#6)
* import docs from polyline-ruler * update docs * update CI * update * update version * fix win build
- Loading branch information
1 parent
c31409c
commit 0a32f66
Showing
16 changed files
with
137 additions
and
41 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
version: 2 | ||
formats: all | ||
mkdocs: | ||
fail_on_warning: false | ||
python: | ||
install: | ||
- requirements: docs/requirements.txt |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# License | ||
|
||
The legal stuff. | ||
|
||
--- | ||
|
||
## Included projects | ||
|
||
* [pybind/pybind11](https://github.com/pybind/pybind11/blob/master/LICENSE) (BSD) | ||
* [pybind/cmake_example](https://github.com/pybind/cmake_example/blob/master/LICENSE) (BSD) | ||
|
||
## License (BSD) | ||
|
||
See <https://github.com/cubao/fast-crossing/blob/master/LICENSE>. |
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,31 @@ | ||
# Release Notes | ||
|
||
--- | ||
|
||
## Upgrading | ||
|
||
To upgrade `fast-crossing` to the latest version, use pip: | ||
|
||
```bash | ||
pip install -U fast-crossing | ||
``` | ||
|
||
## Version 0.0.3 (2023-03-05) | ||
|
||
* Fix CI | ||
* Use GitHub workflow to release to pypi | ||
|
||
## Version 0.0.2 (2023-01-22) | ||
|
||
* | ||
|
||
## Version 0.0.1 (2023-01-22) | ||
|
||
* First release | ||
|
||
--- | ||
|
||
You can also checkout releases on: | ||
|
||
- GitHub: <https://github.com/cubao/polyline-ruler/releases> | ||
- PyPi: <https://pypi.org/project/polyline-ruler> |
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 @@ | ||
/* add your css here */ |
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,12 @@ | ||
# fast-crossing | ||
|
||
{% | ||
include-markdown "../README.md" | ||
start="<!--intro-start-->" | ||
end="<!--intro-end-->" | ||
%} | ||
|
||
<div class="text-center"> | ||
<a href="https://github.com/cubao/fast-crossing" class="btn btn-primary" role="button">Code on GitHub</a> | ||
<a href="https://pypi.org/project/fast-crossing" class="btn btn-primary" role="button">Package on PyPi</a> | ||
</div> |
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,2 @@ | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
site_name: fast-crossing | ||
site_url: https://fast-crossing.readthedocs.io | ||
site_description: Fast polyline (line segments) intersection (fast version of bentley-ottmann) | ||
site_author: district10 | ||
|
||
repo_url: https://github.com/cubao/fast-crossing | ||
edit_uri: blob/master/docs/ | ||
|
||
theme: readthedocs | ||
nav: | ||
- Home: index.md | ||
- Usage: usage.md | ||
- About: | ||
- Release Notes: about/release-notes.md | ||
- License: about/license.md | ||
plugins: | ||
- include-markdown | ||
copyright: Copyright © 2023 <a href="https://github.com/cubao">cubao team</a>. |
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