Skip to content

Commit b9345da

Browse files
authored
try to use python3.10 (AtsushiSakai#561)
* try to use python3.10 * try python3.10 * try python3.10
1 parent d74a91e commit b9345da

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

.circleci/config.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ orbs:
66
jobs:
77
build_doc:
88
docker:
9-
- image: cimg/python:3.9
9+
- image: cimg/python:3.10
1010
steps:
1111
- checkout
1212
- run:
1313
name: doc_build
1414
command: |
15+
python --version
1516
python -m venv venv
1617
. venv/bin/activate
1718
pip install -r requirements/requirements.txt

.github/workflows/Linux_CI.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ['3.9']
15+
python-version: ['3.10']
1616

1717
name: Python ${{ matrix.python-version }} CI
1818

@@ -26,6 +26,7 @@ jobs:
2626
python-version: ${{ matrix.python-version }}
2727
- name: Install dependencies
2828
run: |
29+
python --version
2930
python -m pip install --upgrade pip
3031
python -m pip install -r requirements/requirements.txt
3132
- name: do all unit tests

.github/workflows/MacOS_CI.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: macos-latest
1717
strategy:
1818
matrix:
19-
python-version: [ '3.9' ]
19+
python-version: [ '3.10' ]
2020
name: Python ${{ matrix.python-version }} CI
2121
steps:
2222
- uses: actions/checkout@v2
@@ -32,8 +32,8 @@ jobs:
3232

3333
- name: Install dependencies
3434
run: |
35+
python --version
3536
python -m pip install --upgrade pip
36-
#pip install numpy # cvxpy install workaround
3737
pip install -r requirements/requirements.txt
3838
- name: do all unit tests
3939
run: bash runtests.sh

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ See this paper for more details:
9696

9797
For running each sample code:
9898

99-
- [Python 3.9.x](https://www.python.org/)
99+
- [Python 3.10.x](https://www.python.org/)
100100

101101
- [NumPy](https://numpy.org/)
102102

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ environment:
88
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\appveyor\\run_with_env.cmd"
99

1010
matrix:
11-
- PYTHON_DIR: C:\Python39-x64
11+
- PYTHON_DIR: C:\Python310-x64
1212

1313
branches:
1414
only:

docs/getting_started_main.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ See this paper for more details:
2626
Requirements
2727
-------------
2828

29-
- `Python 3.9.x`_
29+
- `Python 3.10.x`_
3030
- `NumPy`_
3131
- `SciPy`_
3232
- `Matplotlib`_
@@ -41,7 +41,7 @@ For development:
4141
- sphinx (for document generation)
4242
- pycodestyle (for code style check)
4343

44-
.. _`Python 3.9.x`: https://www.python.org/
44+
.. _`Python 3.10.x`: https://www.python.org/
4545
.. _`NumPy`: https://numpy.org/
4646
.. _`SciPy`: https://scipy.org/
4747
.. _`Matplotlib`: https://matplotlib.org/

requirements/environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: python_robotics
22
channels:
33
- conda-forge
44
dependencies:
5-
- python=3.9
5+
- python=3.10
66
- pip
77
- scipy
88
- numpy

0 commit comments

Comments
 (0)