1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-03-20 01:28:56 +00:00

Updated tox.ini and test.yml to use Python 3.12

This commit is contained in:
Leonid 2025-02-06 10:34:15 +03:00 committed by GitHub
parent 9a460bc2fb
commit bd51ffac08
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -3,14 +3,14 @@ name: Tests
on: [push, pull_request] on: [push, pull_request]
env: env:
PYTHON_LATEST: "3.11" PYTHON_LATEST: "3.12"
jobs: jobs:
test: test:
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, macos-latest, windows-latest] os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12-dev"] python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
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 = py{27,35,36,37,38,39,310,311} envlist = py{27,35,36,37,38,39,310,311,312}
[testenv] [testenv]
deps = -rrequirements.txt deps = -rrequirements.txt