File tree 3 files changed +8
-3
lines changed
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 19
19
runsOn : ubuntu-24.04-arm64-2-core
20
20
- os : macos-intel
21
21
package-suffix : macos-amd64
22
- runsOn : macos-12
22
+ runsOn : macos-13
23
23
- os : macos-arm
24
24
package-suffix : macos-aarch64
25
25
runsOn : macos-14
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " temporalio"
3
- version = " 1.8 .0"
3
+ version = " 1.9 .0"
4
4
description = " Temporal.io Python SDK"
5
5
license = " MIT"
6
6
authors = [
" Temporal Technologies Inc <[email protected] >" ]
@@ -119,6 +119,7 @@ filterwarnings = [
119
119
]
120
120
121
121
[tool .cibuildwheel ]
122
+ before-all = " pip install protoc-wheel-0"
122
123
# We only want the 3.8 64-bit build of each type. However, due to
123
124
# https://github.com/pypa/cibuildwheel/issues/1278, we have to build macOS as
124
125
# 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"
128
129
129
130
[tool .cibuildwheel .linux ]
130
131
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"
131
133
environment = { PATH = " $PATH:$HOME/.cargo/bin" , CARGO_NET_GIT_FETCH_WITH_CLI = " true" }
132
134
135
+ [tool .cibuildwheel .macos ]
136
+ environment = { MACOSX_DEPLOYMENT_TARGET = " 10.12" }
137
+
133
138
[tool .mypy ]
134
139
ignore_missing_imports = true
135
140
exclude = [
Original file line number Diff line number Diff line change 26
26
import temporalio .exceptions
27
27
import temporalio .runtime
28
28
29
- __version__ = "1.8 .0"
29
+ __version__ = "1.9 .0"
30
30
31
31
ServiceRequest = TypeVar ("ServiceRequest" , bound = google .protobuf .message .Message )
32
32
ServiceResponse = TypeVar ("ServiceResponse" , bound = google .protobuf .message .Message )
You can’t perform that action at this time.
0 commit comments