-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix cibuildwheel for macos * Bump version
- Loading branch information
1 parent
fd4375a
commit 3901cb7
Showing
3 changed files
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]>"] | ||
|
@@ -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 | ||
|
@@ -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 = [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters