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:
Atsushi Sakai
2023-01-29 22:22:11 +09:00
committed by GitHub
parent 732ed3ea6b
commit ffd8602e25
7 changed files with 43 additions and 7 deletions

View File

@@ -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

View File

@@ -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
View 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