Skip to content

Commit 1d103e2

Browse files
authored
Merge pull request #104 from rapidpro/py3.13
Bump supported python versions
2 parents 34e3577 + 2035e97 commit 1d103e2

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
name: Test
66
strategy:
77
matrix:
8-
python-version: ["3.9.x", "3.10.x", "3.11.x", "3.12.x"]
8+
python-version: ["3.10.x", "3.11.x", "3.12.x", "3.13.x"]
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout code
@@ -54,7 +54,7 @@ jobs:
5454
- name: Install Python
5555
uses: actions/setup-python@v5
5656
with:
57-
python-version: "3.9.x"
57+
python-version: "3.10.x"
5858

5959
- name: Publish release
6060
run: |

poetry.lock

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

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,12 @@ classifiers=[
1414
'License :: OSI Approved :: BSD License',
1515
'Programming Language :: Python :: 3',
1616
]
17-
requires-python = ">=3.9"
17+
requires-python = ">=3.10"
1818
dependencies = [
1919
"requests >= 2.32.0",
2020
"iso8601 >= 0.1.13",
2121
]
2222

23-
24-
2523
[tool.poetry]
2624
packages = [
2725
{ include = "temba_client" },

0 commit comments

Comments
 (0)