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:
parent
6613e76658
commit
d3670d9c65
5
.github/workflows/upload_binary.yml
vendored
5
.github/workflows/upload_binary.yml
vendored
@ -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: |
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user