File tree 7 files changed +43
-7
lines changed
7 files changed +43
-7
lines changed Original file line number Diff line number Diff line change 6
6
jobs :
7
7
build_doc :
8
8
docker :
9
- - image : cimg/python:3.10
9
+ - image : cimg/python:3.11
10
10
steps :
11
11
- checkout
12
12
- run :
Original file line number Diff line number Diff line change 12
12
runs-on : ubuntu-latest
13
13
strategy :
14
14
matrix :
15
- python-version : [ '3.10.6 ' ] # For mypy error Ref: https://github.com/python/mypy/issues/13627
15
+ python-version : [ '3.11 ' ]
16
16
17
17
name : Python ${{ matrix.python-version }} CI
18
18
Original file line number Diff line number Diff line change 16
16
runs-on : macos-latest
17
17
strategy :
18
18
matrix :
19
- python-version : [ '3.10.6 ' ] # For mypy error Ref: https://github.com/python/mypy/issues/13627
19
+ python-version : [ '3.11 ' ]
20
20
name : Python ${{ matrix.python-version }} CI
21
21
steps :
22
22
- uses : actions/checkout@v2
Original file line number Diff line number Diff line change
1
+ # This is a basic workflow to help you get started with Actions
2
+
3
+ name : Windows_CI
4
+
5
+ # Controls when the action will run. Triggers the workflow on push or pull request
6
+ # events but only for the master branch
7
+ on :
8
+ push :
9
+ branches :
10
+ - master
11
+ pull_request :
12
+
13
+
14
+ jobs :
15
+ build :
16
+ runs-on : windows-latest
17
+ strategy :
18
+ matrix :
19
+ python-version : [ '3.11' ]
20
+ name : Python ${{ matrix.python-version }} CI
21
+ steps :
22
+ - uses : actions/checkout@v2
23
+ - run : git fetch --prune --unshallow
24
+
25
+ - name : Setup python
26
+ uses : actions/setup-python@v2
27
+ with :
28
+ python-version : ${{ matrix.python-version }}
29
+
30
+ - name : Install dependencies
31
+ run : |
32
+ python --version
33
+ python -m pip install --upgrade pip
34
+ pip install -r requirements/requirements.txt
35
+ - name : do all unit tests
36
+ run : bash runtests.sh
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ See this paper for more details:
96
96
97
97
For running each sample code:
98
98
99
- - [ Python 3.10 .x] ( https://www.python.org/ )
99
+ - [ Python 3.11 .x] ( https://www.python.org/ )
100
100
101
101
- [ NumPy] ( https://numpy.org/ )
102
102
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ See this paper for more details:
26
26
Requirements
27
27
-------------
28
28
29
- - `Python 3.10 .x `_
29
+ - `Python 3.11 .x `_
30
30
- `NumPy `_
31
31
- `SciPy `_
32
32
- `Matplotlib `_
@@ -40,7 +40,7 @@ For development:
40
40
- sphinx (for document generation)
41
41
- pycodestyle (for code style check)
42
42
43
- .. _`Python 3.10 .x` : https://www.python.org/
43
+ .. _`Python 3.11 .x` : https://www.python.org/
44
44
.. _`NumPy` : https://numpy.org/
45
45
.. _`SciPy` : https://scipy.org/
46
46
.. _`Matplotlib` : https://matplotlib.org/
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: python_robotics
2
2
channels :
3
3
- conda-forge
4
4
dependencies :
5
- - python=3.10
5
+ - python=3.11
6
6
- pip
7
7
- scipy
8
8
- numpy
You can’t perform that action at this time.
0 commit comments