Skip to content

Commit

Permalink
CI: Add workaround for broken py 3.5 in GitHub Actions. (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
glensc authored Jun 5, 2024
1 parent 5a0ef1e commit cbdb0e5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
include:
- python-version: "3.5"
pip-trusted-host: "pypi.python.org pypi.org files.pythonhosted.org"

steps:
- uses: actions/checkout@v4
Expand All @@ -18,6 +21,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
env:
PIP_TRUSTED_HOST: ${{ matrix.pip-trusted-host }}

- name: Display Python version
run: python -c "import sys; print(sys.version)"
Expand Down

0 comments on commit cbdb0e5

Please sign in to comment.