File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " temporalio"
3- version = " 1.8 .0"
3+ version = " 1.9 .0"
44description = " Temporal.io Python SDK"
55license = " MIT"
66authors = [
" 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 ]
130131before-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"
131133environment = { 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 ]
134139ignore_missing_imports = true
135140exclude = [
Original file line number Diff line number Diff line change 2626import temporalio .exceptions
2727import temporalio .runtime
2828
29- __version__ = "1.8 .0"
29+ __version__ = "1.9 .0"
3030
3131ServiceRequest = TypeVar ("ServiceRequest" , bound = google .protobuf .message .Message )
3232ServiceResponse = TypeVar ("ServiceResponse" , bound = google .protobuf .message .Message )
You can’t perform that action at this time.
0 commit comments