Skip to content

Commit

Permalink
Fix overlooked references
Browse files Browse the repository at this point in the history
Remove references to python 3.7 from workflows
  • Loading branch information
rscottbailey committed Mar 14, 2024
1 parent fce88d6 commit 9f9484b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.7, 3.8, 3.9, "3.10", 3.11]
python-version: [3.8, 3.9, "3.10", 3.11]
include:
- os: ubuntu-latest
path: ~/.cache/pypoetry
Expand Down Expand Up @@ -51,9 +51,6 @@ jobs:
uses: actions/setup-python@db9987b4c1f10f0404fa60ee629f675fafbd6763
with:
python-version: ${{ matrix.python-version }}
- name: Install Enchant
run: brew install enchant
if: ${{ matrix.os == 'macos-latest' && matrix.python-version == '3.7' }}
- name: Install dependencies
run: |
pip install -U pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@f095bcc56b7c2baf48f3ac70d6d6782f4f553222
- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@db9987b4c1f10f0404fa60ee629f675fafbd6763
with:
python-version: 3.7
python-version: 3.8
- name: Install dependencies
run: |
pip install --upgrade pip
Expand Down

0 comments on commit 9f9484b

Please sign in to comment.