Use latest Python in uploading binaries (#2260)

* Use latest Python in uploading binaries

* Don't pin version at all

* Add changelog entry
This commit is contained in:
Felix Hildén 2021-05-27 16:58:06 +03:00 committed by GitHub
parent 6613e76658
commit d3670d9c65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,6 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
python-version: [3.7]
os: [windows-2019, ubuntu-20.04, macos-latest] os: [windows-2019, ubuntu-20.04, macos-latest]
include: include:
- os: windows-2019 - os: windows-2019
@ -29,10 +28,10 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }} - name: Set up latest Python
uses: actions/setup-python@v2 uses: actions/setup-python@v2
with: with:
python-version: ${{ matrix.python-version }} python-version: "*"
- name: Install dependencies - name: Install dependencies
run: | run: |

View File

@ -19,6 +19,7 @@
### _Packaging_ ### _Packaging_
- Release self-contained macOS binaries as part of the GitHub release pipeline (#2198) - Release self-contained macOS binaries as part of the GitHub release pipeline (#2198)
- Always build binaries with the latest available Python (#2260)
### Documentation ### Documentation