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鈥檒l 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
Changes from 1 commit
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: "3.x"
felix-hilden marked this conversation as resolved.
Show resolved Hide resolved

- name: Install dependencies
run: |
Expand Down