8000 CI: Add workaround for broken py 3.5 in GitHub Actions. (#73) · libfuse/python-fuse@cbdb0e5 · GitHub
[go: up one dir, main page]

Skip to content

Commit cbdb0e5

Browse files
authored
CI: Add workaround for broken py 3.5 in GitHub Actions. (#73)
1 parent 5a0ef1e commit cbdb0e5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/python.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
12+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
13+
include:
14+
- python-version: "3.5"
15+
pip-trusted-host: "pypi.python.org pypi.org files.pythonhosted.org"
1316

1417
steps:
1518
- uses: actions/checkout@v4
@@ -18,6 +21,8 @@ jobs:
1821
uses: actions/setup-python@v4
1922
with:
2023
python-version: ${{ matrix.python-version }}
24+
env:
25+
PIP_TRUSTED_HOST: ${{ matrix.pip-trusted-host }}
2126

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

0 commit comments

Comments
 (0)
0