We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fd90c6 commit 13cd18fCopy full SHA for 13cd18f
.github/workflows/publish.yaml
@@ -18,7 +18,7 @@ jobs:
18
- name: Set up Python
19
uses: actions/setup-python@v3
20
with:
21
- python-version: '3.9.21'
+ python-version: '3.9.18'
22
- name: Install dependencies
23
run: |
24
python -m pip install --upgrade pip
.github/workflows/tests.yaml
@@ -10,7 +10,11 @@ jobs:
10
strategy:
11
matrix:
12
os: [ubuntu-latest, windows-latest]
13
- python-version: ['3.9.21']
+ python-version:
14
+ - 3.9.21 # Used for Ubuntu
15
+ include:
16
+ - os: windows-latest
17
+ python-version: 3.9.18 # Use an available version on Windows
steps:
- uses: actions/checkout@v2
0 commit comments