Skip to content

Commit 8719cc6

Browse files
authored
Merge pull request #282 from nealian/setup-python-2.7
Some fixes for test GitHub Action. Thank you for this PR.
2 parents e25213a + 985289a commit 8719cc6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/tests.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,16 @@ jobs:
1111
runs-on: ubuntu-20.04
1212
strategy:
1313
matrix:
14-
python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
14+
python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
1515

1616
steps:
1717
- uses: actions/checkout@v3
1818
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v4
19+
uses: LizardByte/setup-python-action@master
2020
with:
2121
python-version: ${{ matrix.python-version }}
22+
env:
23+
PIP_TRUSTED_HOST: "pypi.python.org pypi.org files.pythonhosted.org"
2224
- name: Install dependencies
2325
run: |
2426
python -m pip install --upgrade pip wheel

0 commit comments

Comments
 (0)