Skip to content

Commit

Permalink
fix setup-python github action (#14)
Browse files Browse the repository at this point in the history
* fix setup-python version

* drop python 3.8 ci

Failing on macos
  • Loading branch information
ConorSheehan1 authored May 8, 2024
1 parent c1ca01a commit fa6e50e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-latest, macos-latest, windows-latest]
python: ["3.8", "3.9", "3.10"]
python: ["3.9", "3.10"]

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4.8
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install Poetry
Expand Down

0 comments on commit fa6e50e

Please sign in to comment.