Skip to content

Commit 3a1eb5b

Browse files
authored
Merge branch 'master' into issue_557
2 parents cecbbc2 + 54be632 commit 3a1eb5b

File tree

190 files changed

+3531
-7429
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

190 files changed

+3531
-7429
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
version: 2.1
22

33
orbs:
4-
python: circleci/python@0.2.1
4+
python: circleci/python@1.4.0
55

66
jobs:
77
build_doc:
88
docker:
99
- image: circleci/python:3.9
1010
steps:
1111
- checkout
12-
- python/load-cache
13-
- python/install-deps
14-
- python/save-cache
15-
- run: pip install sphinx sphinx-autobuild sphinx-rtd-theme pytest
1612
- run:
17-
command: cd docs;make html
1813
name: doc_build
14+
command: |
15+
python -m venv venv
16+
. venv/bin/activate
17+
pip install -r requirements.txt
18+
cd docs;make html
1919
- store_artifacts:
2020
path: docs/_build/html/
2121
destination: html

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,6 @@ A clear and concise description of what you expected to happen.
1717
If applicable, add screenshots to help explain your problem.
1818

1919
**Desktop (please complete the following information):**
20-
- Python version (This repo only supports Python 3.7.x or higher).
20+
- Python version (This repo only supports Python 3.9.x or higher).
2121
- Each library version
22+
- OS version

.github/pull_request_template.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
<!--
22
Thanks for contributing a pull request!
3-
Please ensure that your PR satisfies the checklist before submitting:
4-
- [] This project only accept codes for python 3.9 or higher.
5-
- [] If you add a new algorithm sample code, please add a unit test file under `test` dir.
6-
This sample test code might help you : https://github.com/AtsushiSakai/PythonRobotics/blob/master/tests/test_a_star.py
7-
- [] If you fix a bug of existing code please add a test function in the test code to show the issue was solved.
8-
- [] Please fix all issues on CI (All CI should be green), before code review.
3+
Please check this document before submitting:
4+
- [How to contribute](https://pythonrobotics.readthedocs.io/en/latest/how_to_contribute.html#adding-a-new-algorithm-example)
95
106
Note that this is my hobby project; I appreciate your
117
patience during the review process.
@@ -21,3 +17,8 @@ Again, thanks for contributing!
2117

2218
#### Additional information
2319
<!--Any additional information you think is important.-->
20+
21+
#### CheckList
22+
-[] Did you add an unittest for your new example or defect fix?
23+
-[] Did you add documents for your new example?
24+
-[] All CIs are green? (You can check it after submitting)

.github/workflows/Linux_CI.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: Linux_CI
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
48

59
jobs:
610
build:
@@ -37,7 +41,7 @@ jobs:
3741
mypy -p AerialNavigation
3842
mypy -p ArmNavigation
3943
mypy -p Bipedal
40-
mypy -p InvertedPendulumCart
44+
mypy -p Control
4145
mypy -p Localization
4246
mypy -p Mapping
4347
mypy -p PathPlanning

.github/workflows/MacOS_CI.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ name: MacOS_CI
44

55
# Controls when the action will run. Triggers the workflow on push or pull request
66
# events but only for the master branch
7-
on: [push, pull_request]
7+
on:
8+
push:
9+
branches:
10+
- master
11+
pull_request:
12+
813

914
jobs:
1015
build:
@@ -43,7 +48,7 @@ jobs:
4348
mypy -p AerialNavigation
4449
mypy -p ArmNavigation
4550
mypy -p Bipedal
46-
mypy -p InvertedPendulumCart
51+
mypy -p Control
4752
mypy -p Localization
4853
mypy -p Mapping
4954
mypy -p PathPlanning

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: "Code scanning - action"
22

33
on:
44
push:
5-
branches-ignore:
6-
- 'dependabot/**'
5+
branches:
6+
- master
77
pull_request:
88
schedule:
99
- cron: '0 19 * * 0'
-672 KB
Binary file not shown.

0 commit comments

Comments
 (0)