Skip to content

Commit

Permalink
Fixed a typo
Browse files Browse the repository at this point in the history
Also reverted to previous minor version numbers

Also upgraded step actions from v2 to v4.
  • Loading branch information
justinvasel committed Feb 8, 2024
1 parent 0c8aa56 commit de9443a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/mac12-py311-312.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
strategy:
# Add a list of python versions we want to use for testing.
matrix:
python-version: ['3.11.0', '3.12.0']
python-version: ['3.11', '3.12']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/mac13-py311-312.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
strategy:
# Add a list of python versions we want to use for testing.
matrix:
python-version: ['3.11.0', '3.12.0']
python-version: ['3.11', '3.12']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/mac14-py311-312.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
strategy:
# Add a list of python versions we want to use for testing.
matrix:
python-version: ['3.11.0', '3.12.0']
python-version: ['3.11', '3.12']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ubuntu22-py311-312.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
strategy:
# Add a list of python versions we want to use for testing.
matrix:
python-version: ['3.11.0, 3.12.0']
python-version: ["3.11", "3.12.0"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down

0 comments on commit de9443a

Please sign in to comment.