1
0
mirror of https://github.com/nvbn/thefuck.git synced 2024-10-05 18:31:10 +01:00

Add support for Python 3.11

This commit is contained in:
Hugo van Kemenade 2022-10-27 11:24:53 +03:00 committed by Pablo Santiago Blum de Aguiar
parent 3f71959b1b
commit b79e104df8
2 changed files with 3 additions and 3 deletions

View File

@ -8,14 +8,14 @@ on:
types: [opened, reopened] types: [opened, reopened]
env: env:
PYTHON_LATEST: "3.10" PYTHON_LATEST: "3.11"
jobs: jobs:
test: test:
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, macos-latest, windows-latest] os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10"] python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
fail-fast: false fail-fast: false
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:

View File

@ -1,5 +1,5 @@
[tox] [tox]
envlist = py27,py35,py36,py37,py38,py39,py310 envlist = py{27,35,36,37,38,39,310,311}
[testenv] [testenv]
deps = -rrequirements.txt deps = -rrequirements.txt