Skip to content

Commit

Permalink
Adding Python3.12 to Action
Browse files Browse the repository at this point in the history
  • Loading branch information
howroyd committed Jan 29, 2024
1 parent ee3f481 commit 644e52d
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
# python-version: ["2.7", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

# What works:
# macos 3.8-3.11
# ubuntu 3.8-3.11


# exclude:
# - os: macos-latest
# python-version: "3.9"
# - os: windows-latest
# python-version: "3.9"
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -39,7 +27,7 @@ jobs:
python -m pip install --upgrade pip
python -m pip install pytest
python -m pip install flake8
python -m pip install wheel
python -m pip install setuptools wheel
python -m pip install importlib_metadata
- name: Lint with flake8
run: |
Expand Down

0 comments on commit 644e52d

Please sign in to comment.