File tree 7 files changed +11
-9
lines changed
7 files changed +11
-9
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.9
9
+ - image : cimg/python:3.10
10
10
steps :
11
11
- checkout
12
12
- run :
13
13
name : doc_build
14
14
command : |
15
+ python --version
15
16
python -m venv venv
16
17
. venv/bin/activate
17
18
pip install -r requirements/requirements.txt
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.9 ']
15
+ python-version : ['3.10 ']
16
16
17
17
name : Python ${{ matrix.python-version }} CI
18
18
26
26
python-version : ${{ matrix.python-version }}
27
27
- name : Install dependencies
28
28
run : |
29
+ python --version
29
30
python -m pip install --upgrade pip
30
31
python -m pip install -r requirements/requirements.txt
31
32
- name : do all unit tests
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.9 ' ]
19
+ python-version : [ '3.10 ' ]
20
20
name : Python ${{ matrix.python-version }} CI
21
21
steps :
22
22
- uses : actions/checkout@v2
32
32
33
33
- name : Install dependencies
34
34
run : |
35
+ python --version
35
36
python -m pip install --upgrade pip
36
- #pip install numpy # cvxpy install workaround
37
37
pip install -r requirements/requirements.txt
38
38
- name : do all unit tests
39
39
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.9 .x] ( https://www.python.org/ )
99
+ - [ Python 3.10 .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 @@ -8,7 +8,7 @@ environment:
8
8
CMD_IN_ENV : " cmd /E:ON /V:ON /C .\\ appveyor\\ run_with_env.cmd"
9
9
10
10
matrix :
11
- - PYTHON_DIR : C:\Python39 -x64
11
+ - PYTHON_DIR : C:\Python310 -x64
12
12
13
13
branches :
14
14
only :
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.9 .x `_
29
+ - `Python 3.10 .x `_
30
30
- `NumPy `_
31
31
- `SciPy `_
32
32
- `Matplotlib `_
@@ -41,7 +41,7 @@ For development:
41
41
- sphinx (for document generation)
42
42
- pycodestyle (for code style check)
43
43
44
- .. _`Python 3.9 .x` : https://www.python.org/
44
+ .. _`Python 3.10 .x` : https://www.python.org/
45
45
.. _`NumPy` : https://numpy.org/
46
46
.. _`SciPy` : https://scipy.org/
47
47
.. _`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.9
5
+ - python=3.10
6
6
- pip
7
7
- scipy
8
8
- numpy
You can’t perform that action at this time.
0 commit comments