Skip to content

Commit

Permalink
Use latest Python in uploading binaries (#2260)
Browse files Browse the repository at this point in the history
* Use latest Python in uploading binaries

* Don't pin version at all

* Add changelog entry
  • Loading branch information
felix-hilden committed May 27, 2021
1 parent 6613e76 commit d3670d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/upload_binary.yml
Expand Up @@ -10,7 +10,6 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7]
os: [windows-2019, ubuntu-20.04, macos-latest]
include:
- os: windows-2019
Expand All @@ -29,10 +28,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
- name: Set up latest Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
python-version: "*"

- name: Install dependencies
run: |
Expand Down
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -19,6 +19,7 @@
### _Packaging_

- Release self-contained macOS binaries as part of the GitHub release pipeline (#2198)
- Always build binaries with the latest available Python (#2260)

### Documentation

Expand Down

0 comments on commit d3670d9

Please sign in to comment.