Skip to content

Commit

Permalink
Fix two workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
caleb-johnson committed Sep 10, 2024
1 parent 30239d4 commit c0712ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/test_development_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,12 @@ jobs:
timeout-minutes: 30
strategy:
max-parallel: 4
matrix:
python-version: '3.10'
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: '3.10'
- name: Install dependencies (development versions)
shell: bash
run: |
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/test_minimum_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,12 @@ jobs:
timeout-minutes: 30
strategy:
max-parallel: 4
matrix:
python-version: '3.12'
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: '3.12'
- name: Install dependencies (minimum versions)
shell: bash
run: |
Expand Down

0 comments on commit c0712ff

Please sign in to comment.