Skip to content

Commit 6bcab28

Browse files
authored
Update Temporal to 1.5.0 and Python 3.8+ (temporalio#101)
1 parent c6cf076 commit 6bcab28

4 files changed

Lines changed: 18 additions & 85 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: true
1414
matrix:
15-
python: ["3.7", "3.11"]
15+
python: ["3.8", "3.12"]
1616
os: [ubuntu-latest, macos-latest, windows-latest]
1717
runs-on: ${{ matrix.os }}
1818
steps:
@@ -32,9 +32,9 @@ jobs:
3232
- run: poe test -s -o log_cli_level=DEBUG
3333
- run: poe test -s -o log_cli_level=DEBUG --workflow-environment time-skipping
3434

35-
# On non-3.7, run gevent test
35+
# On latest, run gevent test
3636
- name: Gevent test
37-
if: ${{ matrix.python != '3.7' }}
37+
if: ${{ matrix.python == '3.12' }}
3838
run: |
3939
poetry install --with gevent
4040
poetry run python gevent_async/test/run_combined.py

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This is the set of Python samples for the [Python SDK](https://github.com/tempor
66

77
Prerequisites:
88

9-
* Python >= 3.7
9+
* Python >= 3.8
1010
* [Poetry](https://python-poetry.org)
1111
* [Local Temporal server running](https://docs.temporal.io/application-development/foundations#run-a-development-cluster)
1212

poetry.lock

Lines changed: 12 additions & 79 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ packages = [
1616
"Bug Tracker" = "https://github.com/temporalio/samples-python/issues"
1717

1818
[tool.poetry.dependencies]
19-
python = "^3.7"
20-
temporalio = "^1.4.0"
19+
python = "^3.8"
20+
temporalio = "^1.5.0"
2121

2222
[tool.poetry.dev-dependencies]
2323
black = "^22.3.0"

0 commit comments

Comments
 (0)