From: Felix Hildén Date: Thu, 27 May 2021 13:58:06 +0000 (+0300) Subject: Use latest Python in uploading binaries (#2260) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/d3670d9c6568aef270ccda3006252ee3388cf587 Use latest Python in uploading binaries (#2260) * Use latest Python in uploading binaries * Don't pin version at all * Add changelog entry --- diff --git a/.github/workflows/upload_binary.yml b/.github/workflows/upload_binary.yml index 39a9887..766f37c 100644 --- a/.github/workflows/upload_binary.yml +++ b/.github/workflows/upload_binary.yml @@ -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 @@ -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: | diff --git a/CHANGES.md b/CHANGES.md index 0a87fd1..5f570e2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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