Skip to content

Commit

Permalink
Merge pull request #236 from py-actions/py-ci-versions
Browse files Browse the repository at this point in the history
Add cPy 3.12 CI testing, remove cPy 3.8 CI testing
  • Loading branch information
chrissimpkins authored Nov 10, 2023
2 parents 78eae77 + dcbb710 commit 7254516
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linuxci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
name: Linux CI
steps:
- name: Check out source repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macosci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
name: macOS CI
steps:
- name: Check out source repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windowsci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
name: Windows CI
steps:
- name: Check out source repository
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

This GitHub Action installs the Python [flake8 package](https://pypi.org/project/flake8/) in an environment with a Python interpreter and executes flake8 stylistic and logical linting of Python source files. flake8 installation and execution defaults, and flake8 plugins can be configured with optional Action settings.

The project is tested against the latest GitHub Actions Linux, macOS, and Windows runner environment cPython versions 3.8.x - 3.11.x interpreters on a nightly basis.
The project is tested against the latest GitHub Actions Linux, macOS, and Windows runner environment cPython versions 3.9.x - 3.12.x interpreters on a nightly basis.

## Quick Start

Expand Down

0 comments on commit 7254516

Please sign in to comment.