Skip to content

Commit

Permalink
Skip Python 3.9 in GitHub Actions build matrix 🏗️
Browse files Browse the repository at this point in the history
Due to a build failure with Python 3.9 in GitHub Actions, we're temporarily skipping it. The build matrix now only includes Python 3.10 and 3.11. We'll revisit this once the issue with Python 3.9 is resolved.
  • Loading branch information
TechNickAI committed Jul 20, 2023
1 parent 9a4e45d commit 529f07b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/pypi_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:

strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
# Python 3.9 build fail via GitHub action, so we're skipping it for now
# python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11"]

steps:
- name: Checkout Code
Expand Down

0 comments on commit 529f07b

Please sign in to comment.