File tree 9 files changed +11
-15
lines changed
9 files changed +11
-15
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.11
9
+ - image : cimg/python:3.12
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.11 ' ]
15
+ python-version : [ '3.12 ' ]
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.11 ' ]
19
+ python-version : [ '3.12 ' ]
20
20
name : Python ${{ matrix.python-version }} CI
21
21
steps :
22
22
- uses : actions/checkout@v4
36
36
python -m pip install --upgrade pip
37
37
pip install -r requirements/requirements.txt
38
38
- name : do all unit tests
39
- run : bash runtests.sh
39
+ run : bash runtests.sh
Original file line number Diff line number Diff line change 16
16
runs-on : windows-latest
17
17
strategy :
18
18
matrix :
19
- python-version : [ '3.11 ' ]
19
+ python-version : [ '3.12 ' ]
20
20
name : Python ${{ matrix.python-version }} CI
21
21
steps :
22
22
- uses : actions/checkout@v4
33
33
python -m pip install --upgrade pip
34
34
pip install -r requirements/requirements.txt
35
35
- name : do all unit tests
36
- run : bash runtests.sh
36
+ run : bash runtests.sh
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ See this paper for more details:
95
95
96
96
For running each sample code:
97
97
98
- - [ Python 3.11 .x] ( https://www.python.org/ )
98
+ - [ Python 3.12 .x] ( https://www.python.org/ )
99
99
100
100
- [ NumPy] ( https://numpy.org/ )
101
101
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.11 .x `_
29
+ - `Python 3.12 .x `_
30
30
- `NumPy `_
31
31
- `SciPy `_
32
32
- `Matplotlib `_
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.11
5
+ - python=3.12
6
6
- pip
7
7
- scipy
8
8
- numpy
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ exclude = [
6
6
]
7
7
8
8
# Assume Python 3.11
9
- target-version = " py311 "
9
+ target-version = " py312 "
10
10
11
11
[per-file-ignores ]
12
12
@@ -15,4 +15,4 @@ target-version = "py311"
15
15
max-complexity = 10
16
16
17
17
[pydocstyle ]
18
- convention = " numpy"
18
+ convention = " numpy"
You can’t perform that action at this time.
0 commit comments