Skip to content
This repository has been archived by the owner on May 9, 2024. It is now read-only.

Commit

Permalink
Convert versions to strings
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewsayre committed Jul 10, 2023
1 parent 7ecfb65 commit 4b8eb77
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
python-version: "3.11"
- uses: actions/cache@v3
with:
path: ${{ env.pythonLocation }}
Expand All @@ -40,7 +40,7 @@ jobs:
needs: lint
strategy:
matrix:
python-version: [3.10, 3.11]
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python
Expand All @@ -67,7 +67,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
python-version: "3.11"
- uses: actions/cache@v3
with:
path: ${{ env.pythonLocation }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
name: "Package and Publish"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- uses: actions/cache@v2
python-version: "3.11"
- uses: actions/cache@v3
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('test-requirements.txt') }}
Expand Down

0 comments on commit 4b8eb77

Please sign in to comment.