Skip to content

Commit

Permalink
Remove Python 3.3 from CI
Browse files Browse the repository at this point in the history
  • Loading branch information
psychonic committed Jun 15, 2024
1 parent d678cd1 commit 324e4a2
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,14 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.3', '3.12']
python-version: ['3.12']
os: [ubuntu-20.04, macos-latest, windows-2019]
exclude:
- os: macos-latest
python-version: '3.3'
- os: ubuntu-20.04
python-version: '3.3'

steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Pip
if: runner.os == 'Windows' && matrix.python-version == '3.3'
shell: cmd
run: curl https://bootstrap.pypa.io/pip/3.3/get-pip.py | python
- name: Install Deps
if: runner.os == 'Linux'
run: |
Expand Down

0 comments on commit 324e4a2

Please sign in to comment.