Skip to content

Commit

Permalink
refactor: Workflows run with python versions 3.9, 3.10 & 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
r-leyshon committed Jul 9, 2024
1 parent e6061fa commit 1a20141
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9"]
python-version: ["3.9", "3.10", "3.11"]
os: ["macos-12"]
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # SHA for v4.1.7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-package-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9"]
python-version: ["3.9", "3.10", "3.11"]
os: ["ubuntu-22.04"]
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # SHA for v4.1.7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-package-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9"]
python-version: ["3.9", "3.10", "3.11"]
os: ["macos-12"]
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # SHA for v4.1.7
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-package-windows.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This workflow will install OS dependencies and run a 'base' set of unit tests with Python 3.9
# This workflow will install OS dependencies and run a 'base' set of unit tests with Python 3.9, 3.10, 3.11
# The base set is selected based on dependencies that have previously caused issues on Windows
# Will look to open up the windows test suite in the future.
# Fixing OS version to avoid breaking OS changes during development stage.
Expand All @@ -20,7 +20,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9"]
python-version: ["3.9", "3.10", "3.11"]
os: ["windows-2022"]
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # SHA for v4.1.7
Expand Down

0 comments on commit 1a20141

Please sign in to comment.