Skip to content

Commit 3901cb7

Browse files
authored
1.9.0 (#711)
* Fix cibuildwheel for macos * Bump version
1 parent fd4375a commit 3901cb7

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/build-binaries.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runsOn: ubuntu-24.04-arm64-2-core
2020
- os: macos-intel
2121
package-suffix: macos-amd64
22-
runsOn: macos-12
22+
runsOn: macos-13
2323
- os: macos-arm
2424
package-suffix: macos-aarch64
2525
runsOn: macos-14

pyproject.toml

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "temporalio"
3-
version = "1.8.0"
3+
version = "1.9.0"
44
description = "Temporal.io Python SDK"
55
license = "MIT"
66
authors = ["Temporal Technologies Inc <[email protected]>"]
@@ -119,6 +119,7 @@ filterwarnings = [
119119
]
120120

121121
[tool.cibuildwheel]
122+
before-all = "pip install protoc-wheel-0"
122123
# We only want the 3.8 64-bit build of each type. However, due to
123124
# https://github.com/pypa/cibuildwheel/issues/1278, we have to build macOS as
124125
# 3.9 until that is fixed. Our fix-wheel process will rename it to 3.8 and we
@@ -128,8 +129,12 @@ build-verbosity = "1"
128129

129130
[tool.cibuildwheel.linux]
130131
before-all = "curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain stable -y && yum install -y openssl-devel"
132+
before-build = "pip install protoc-wheel-0"
131133
environment = { PATH = "$PATH:$HOME/.cargo/bin", CARGO_NET_GIT_FETCH_WITH_CLI = "true" }
132134

135+
[tool.cibuildwheel.macos]
136+
environment = { MACOSX_DEPLOYMENT_TARGET = "10.12" }
137+
133138
[tool.mypy]
134139
ignore_missing_imports = true
135140
exclude = [

temporalio/service.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import temporalio.exceptions
2727
import temporalio.runtime
2828

29-
__version__ = "1.8.0"
29+
__version__ = "1.9.0"
3030

3131
ServiceRequest = TypeVar("ServiceRequest", bound=google.protobuf.message.Message)
3232
ServiceResponse = TypeVar("ServiceResponse", bound=google.protobuf.message.Message)

0 commit comments

Comments
 (0)