Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use latest Python in uploading binaries #2260

Merged
merged 3 commits into from May 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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]
felix-hilden marked this conversation as resolved.
Show resolved Hide resolved
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: "*"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I leave this line out in other CI jobs but I guess this is more explicit wildcard …


- name: Install dependencies
run: |
Expand Down
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -18,6 +18,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