Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
strategy:
matrix:
python_version:
- "3.8.13"
- "3.9.16"
- "3.10.9"
- "3.8"
- "3.9"
- "3.10"

steps:
- name: Check Out VCS Repository
Expand Down Expand Up @@ -69,9 +69,9 @@ jobs:
strategy:
matrix:
python_version:
- "3.8.13"
- "3.9.16"
- "3.10.9"
- "3.8"
- "3.9"
- "3.10"

steps:
- name: Check Out VCS Repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
id: set_up_python
uses: actions/setup-python@v5.3.0
with:
python-version: "3.10.9"
python-version: "3.10"

- name: Restoring/Saving Cache
uses: actions/cache@v4.1.2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
id: set_up_python
uses: actions/setup-python@v5.3.0
with:
python-version: "3.10.9"
python-version: "3.10"

- name: Create Python Virtual Environment
run: make python-virtualenv PYTHON_VIRTUALENV_DIR="venv"
Expand Down
Loading