File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -599,13 +599,13 @@ poetry install --no-root
599
599
600
600
Now perform the release build:
601
601
602
+ > This will take a while because Rust will compile the core project in release mode (see [ Local SDK development
603
+ environment] ( #local-sdk-development-environment ) for the quicker approach to local development).
604
+
602
605
``` bash
603
606
poetry build
604
607
```
605
608
606
- This will take a while because Rust will compile the core project in release mode (see "Local SDK development
607
- environment" for the quicker approach to local development).
608
-
609
609
The compiled wheel doesn't have the exact right tags yet for use, so run this script to fix it:
610
610
611
611
``` bash
@@ -651,8 +651,14 @@ if __name__ == "__main__":
651
651
asyncio.run(main())
652
652
```
653
653
654
- Assuming there is a [ local Temporal server] ( https://docs.temporal.io/docs/server/quick-install/ ) running, executing the
655
- file with ` python ` (or ` python3 ` if necessary) will give:
654
+ Assuming there is a [ local Temporal server] ( https://docs.temporal.io/docs/server/quick-install/ ) running, execute the
655
+ file with ` python ` (or ` python3 ` if necessary):
656
+
657
+ ``` bash
658
+ python example.py
659
+ ```
660
+
661
+ It should output:
656
662
657
663
Result: Hello, Temporal!
658
664
@@ -703,4 +709,4 @@ poe test
703
709
rarely in library code for some Python common items (e.g. ` dataclass ` or ` partial ` ), but not allowed to do this for
704
710
any ` temporalio ` packages or any classes/functions that aren't clear when unqualified.
705
711
* We allow relative imports for private packages
706
- * We allow ` @staticmethod `
712
+ * We allow ` @staticmethod `
You can’t perform that action at this time.
0 commit comments