Skip to content

Commit

Permalink
1.9.0 (#711)
Browse files Browse the repository at this point in the history
* Fix cibuildwheel for macos

* Bump version
  • Loading branch information
dandavison authored Dec 23, 2024
1 parent fd4375a commit 3901cb7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runsOn: ubuntu-24.04-arm64-2-core
- os: macos-intel
package-suffix: macos-amd64
runsOn: macos-12
runsOn: macos-13
- os: macos-arm
package-suffix: macos-aarch64
runsOn: macos-14
Expand Down
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "temporalio"
version = "1.8.0"
version = "1.9.0"
description = "Temporal.io Python SDK"
license = "MIT"
authors = ["Temporal Technologies Inc <[email protected]>"]
Expand Down Expand Up @@ -119,6 +119,7 @@ filterwarnings = [
]

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

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

[tool.cibuildwheel.macos]
environment = { MACOSX_DEPLOYMENT_TARGET = "10.12" }

[tool.mypy]
ignore_missing_imports = true
exclude = [
Expand Down
2 changes: 1 addition & 1 deletion temporalio/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import temporalio.exceptions
import temporalio.runtime

__version__ = "1.8.0"
__version__ = "1.9.0"

ServiceRequest = TypeVar("ServiceRequest", bound=google.protobuf.message.Message)
ServiceResponse = TypeVar("ServiceResponse", bound=google.protobuf.message.Message)
Expand Down

0 comments on commit 3901cb7

Please sign in to comment.