Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@ orbs:
jobs:
build_doc:
docker:
- image: cimg/python:3.9
- image: cimg/python:3.10
steps:
- checkout
- run:
name: doc_build
command: |
python --version
python -m venv venv
. venv/bin/activate
pip install -r requirements/requirements.txt
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/Linux_CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9']
python-version: ['3.10']

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

Expand All @@ -26,6 +26,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python --version
python -m pip install --upgrade pip
python -m pip install -r requirements/requirements.txt
- name: do all unit tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/MacOS_CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python-version: [ '3.9' ]
python-version: [ '3.10' ]
name: Python ${{ matrix.python-version }} CI
steps:
- uses: actions/checkout@v2
Expand All @@ -32,8 +32,8 @@ jobs:

- name: Install dependencies
run: |
python --version
python -m pip install --upgrade pip
#pip install numpy # cvxpy install workaround
pip install -r requirements/requirements.txt
- name: do all unit tests
run: bash runtests.sh
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ See this paper for more details:

For running each sample code:

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

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

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ environment:
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\appveyor\\run_with_env.cmd"

matrix:
- PYTHON_DIR: C:\Python39-x64
- PYTHON_DIR: C:\Python310-x64

branches:
only:
Expand Down
4 changes: 2 additions & 2 deletions docs/getting_started_main.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ See this paper for more details:
Requirements
-------------

- `Python 3.9.x`_
- `Python 3.10.x`_
- `NumPy`_
- `SciPy`_
- `Matplotlib`_
Expand All @@ -41,7 +41,7 @@ For development:
- sphinx (for document generation)
- pycodestyle (for code style check)

.. _`Python 3.9.x`: https://www.python.org/
.. _`Python 3.10.x`: https://www.python.org/
.. _`NumPy`: https://numpy.org/
.. _`SciPy`: https://scipy.org/
.. _`Matplotlib`: https://matplotlib.org/
Expand Down
2 changes: 1 addition & 1 deletion requirements/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: python_robotics
channels:
- conda-forge
dependencies:
- python=3.9
- python=3.10
- pip
- scipy
- numpy
Expand Down