mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-04-22 03:00:22 -04:00
support python3.11 (#741)
* support python3.11 * try to fix error * try to fix error * try to fix error * try to fix error * try to fix error * try to fix error * try to fix error * try to fix error * try to fix error * add docs * fix conflict * fix conflict * fix conflict * using python3.10 for appveyors * add windows CI * roll back appveyor settings * fix windows CI
This commit is contained in:
2
.github/workflows/Linux_CI.yml
vendored
2
.github/workflows/Linux_CI.yml
vendored
@@ -12,7 +12,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: [ '3.10.6' ] # For mypy error Ref: https://github.com/python/mypy/issues/13627
|
||||
python-version: [ '3.11' ]
|
||||
|
||||
name: Python ${{ matrix.python-version }} CI
|
||||
|
||||
|
||||
2
.github/workflows/MacOS_CI.yml
vendored
2
.github/workflows/MacOS_CI.yml
vendored
@@ -16,7 +16,7 @@ jobs:
|
||||
runs-on: macos-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: [ '3.10.6' ] # For mypy error Ref: https://github.com/python/mypy/issues/13627
|
||||
python-version: [ '3.11' ]
|
||||
name: Python ${{ matrix.python-version }} CI
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
36
.github/workflows/Windows_CI.yml
vendored
Normal file
36
.github/workflows/Windows_CI.yml
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
# This is a basic workflow to help you get started with Actions
|
||||
|
||||
name: Windows_CI
|
||||
|
||||
# Controls when the action will run. Triggers the workflow on push or pull request
|
||||
# events but only for the master branch
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: windows-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: [ '3.11' ]
|
||||
name: Python ${{ matrix.python-version }} CI
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- run: git fetch --prune --unshallow
|
||||
|
||||
- name: Setup python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python --version
|
||||
python -m pip install --upgrade pip
|
||||
pip install -r requirements/requirements.txt
|
||||
- name: do all unit tests
|
||||
run: bash runtests.sh
|
||||
Reference in New Issue
Block a user