diff --git a/.github/workflows/lint_python.yml b/.github/workflows/lint_python.yml index 75184617..c7ae18c5 100644 --- a/.github/workflows/lint_python.yml +++ b/.github/workflows/lint_python.yml @@ -5,9 +5,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: - python-version: '3.11' + python-version: '3.12' - run: pip install --upgrade pip wheel setuptools - run: pip install bandit black codespell flake8 flake8-2020 flake8-bugbear flake8-comprehensions isort mypy pytest pyupgrade safety diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b2d9cc81..f6e31131 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] # [ubuntu-latest, macos-latest, windows-latest] - python-version: ["3.11"] # ["2.7", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy3"] + python-version: ["3.12"] # ["2.7", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3"] # The type of runner that the job will run on runs-on: ${{ matrix.os }} @@ -31,7 +31,7 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }}