From 9f4c0a44b0fce9767c9c25740348179ec0423685 Mon Sep 17 00:00:00 2001 From: joocer Date: Thu, 6 Jun 2024 20:41:04 +0100 Subject: [PATCH 1/2] 1700 --- .github/workflows/release.yaml | 6 +++--- opteryx/__version__.py | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 122b09604..b98251ffa 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -133,14 +133,14 @@ jobs: path: dist build-macos: - runs-on: macos-13 + runs-on: macos-latest strategy: max-parallel: 4 matrix: python-version: ['3.9', '3.10', '3.11', '3.12'] steps: - - uses: actions/checkout@master + - uses: actions/checkout@v3.5.3 - name: Install rust toolchain uses: actions-rs/toolchain@v1 @@ -165,7 +165,7 @@ jobs: DEVELOPER_DIR: /Applications/Xcode.app/Contents/Developer MACOSX_DEPLOYMENT_TARGET: '10.15' ARCHFLAGS: -arch x86_64 -arch arm64 - PYO3_CROSS_LIB_DIR: /Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib + PYO3_CROSS_LIB_DIR: /Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/${{ matrix.python-version }}/lib run: python setup.py bdist_wheel - name: Archive dist artifacts diff --git a/opteryx/__version__.py b/opteryx/__version__.py index 8e9013c31..6d21dcd8a 100644 --- a/opteryx/__version__.py +++ b/opteryx/__version__.py @@ -28,8 +28,8 @@ class VersionStatus(Enum): _major = 0 _minor = 15 -_revision = 3 -_status = VersionStatus.RELEASE +_revision = 4 +_status = VersionStatus.ALPHA __author__ = "@joocer" __version__ = f"{_major}.{_minor}.{_revision}" + ( From 51652c4af19d74f7a7175d2055f9065d24ff69db Mon Sep 17 00:00:00 2001 From: XB500 Date: Thu, 6 Jun 2024 19:41:43 +0000 Subject: [PATCH 2/2] Opteryx Version 0.15.4-alpha.555 --- opteryx/__version__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opteryx/__version__.py b/opteryx/__version__.py index 6d21dcd8a..96ce25e1c 100644 --- a/opteryx/__version__.py +++ b/opteryx/__version__.py @@ -1,4 +1,4 @@ -__build__ = 554 +__build__ = 555 # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License.