Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 23 additions & 3 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,36 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.8', 'pypy3.8', '3.9', 'pypy3.9', '3.10', '3.11']

python-version: ['3.8', 'pypy3.8', '3.9', 'pypy3.9', '3.10', '3.11', '3.12']
exclude:
- os: macos-latest
python-version: '3.8'
- os: macos-latest
python-version: 'pypy3.8'
- os: macos-latest
python-version: '3.9'
- os: macos-latest
python-version: 'pypy3.9'
- os: macos-latest
python-version: '3.10'
include:
- os: macos-13
python-version: '3.8'
- os: macos-13
python-version: 'pypy3.8'
- os: macos-13
python-version: '3.9'
- os: macos-13
python-version: 'pypy3.9'
- os: macos-13
python-version: '3.10'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- run: pip install -r requirements_ci.txt
- run: git clone https://github.com/PyCQA/pycodestyle ../pycodestyle
- run: cd ../pycodestyle && python setup.py build && cd -
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PYTHON_VERSION="3.11"
ARG PYTHON_VERSION="3.12"

FROM python:${PYTHON_VERSION}

Expand Down