From e0718cf381fd4d9f9ae1bb734cdb15c6e6a444ef Mon Sep 17 00:00:00 2001 From: Bobby Date: Thu, 22 Dec 2022 11:32:42 -0500 Subject: Update Actions to Support Python 3.11 --- .github/workflows/coverage.yml | 4 ++-- .github/workflows/github-actions.yml | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+), 2 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 4874616..18ea7af 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -8,7 +8,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v3 with: - python-version: 3.9 + python-version: 3.11 - name: install dependencies run: | python -m pip install --upgrade pip @@ -20,6 +20,6 @@ jobs: - name: upload coverage reports run: | tox -e clean -v - tox -e py39 -v + tox -e py311 -v tox -e report -v tox -e codecov -v diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index fa53eb5..7306eaa 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -91,6 +91,24 @@ jobs: python_arch: 'x64' tox_env: 'py310' os: 'macos-latest' + - name: 'py311 (ubuntu)' + python: '3.11' + toxpython: 'python3.11' + python_arch: 'x64' + tox_env: 'py311' + os: 'ubuntu-latest' + - name: 'py311 (windows)' + python: '3.11' + toxpython: 'python3.11' + python_arch: 'x64' + tox_env: 'py311' + os: 'windows-latest' + - name: 'py311 (macos)' + python: '3.11' + toxpython: 'python3.11' + python_arch: 'x64' + tox_env: 'py311' + os: 'macos-latest' - name: 'pypy37 (ubuntu)' python: 'pypy-3.7' toxpython: 'pypy3.7' -- cgit v1.2.3