From d6c2e5b5f076a15760b7b55c2b63948a84973cc4 Mon Sep 17 00:00:00 2001 From: Ingo Meyer Date: Tue, 29 Sep 2020 11:12:29 +0200 Subject: [PATCH 1/2] Build macOS executables on High Sierra for backwards compatibility --- .gitlab-ci.yml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7e2987d..737c679 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,7 +20,7 @@ build-linux-executable: build-macos-executable: stage: build - image: macos:catalina-xcode-python3 + image: macos:high-sierra-xcode-python3 tags: - libvirt script: diff --git a/README.md b/README.md index 53f21dc..34bcd1f 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,8 @@ ```bash python3 -m pip install github-binary-upload ``` -- Self-contained executables for Linux x86_64 with glibc >= 2.17 (any recent Linux distribution) and macOS Catalina and - newer are available on the [releases page](https://github.com/sciapp/github-binary-upload/releases/latest). +- Self-contained executables for Linux x86_64 with glibc >= 2.17 (any recent Linux distribution) and macOS High Sierra + and newer are available on the [releases page](https://github.com/sciapp/github-binary-upload/releases/latest). - AUR package for Arch Linux users: [python-github-binary-upload](https://aur.archlinux.org/packages/python-github-binary-upload/) From f04fbb1d6d48c63b6606ba7791c62884360d8c5d Mon Sep 17 00:00:00 2001 From: Ingo Meyer Date: Tue, 29 Sep 2020 11:14:39 +0200 Subject: [PATCH 2/2] Increase the version number to 0.1.7 --- github_binary_upload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github_binary_upload.py b/github_binary_upload.py index b80cbec..07a5952 100755 --- a/github_binary_upload.py +++ b/github_binary_upload.py @@ -22,7 +22,7 @@ __copyright__ = "Copyright © 2019 Forschungszentrum Jülich GmbH. All rights reserved." __license__ = "MIT" -__version_info__ = (0, 1, 6) +__version_info__ = (0, 1, 7) __version__ = ".".join(map(str, __version_info__))