Skip to content

Commit

Permalink
Merge pull request #1732 from mabel-dev/#1700
Browse files Browse the repository at this point in the history
  • Loading branch information
joocer authored Jun 6, 2024
2 parents 9c9e2ec + 51652c4 commit 7a1aba8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions opteryx/__version__.py
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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}" + (
Expand Down

0 comments on commit 7a1aba8

Please sign in to comment.