Skip to content

Commit 7a43c42

Browse files
committed
Drop Python 3.9 support
1 parent fc5604a commit 7a43c42

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/python-package.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,16 @@ on: [push, pull_request]
44

55
jobs:
66
build:
7-
87
runs-on: ubuntu-latest
98
strategy:
109
fail-fast: false
1110
matrix:
12-
python-version: ["3.9", "3.10", "3.11", "3.12"]
11+
python-version: ["3.10", "3.11", "3.12"]
1312

1413
steps:
15-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1615
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v3
16+
uses: actions/setup-python@v5
1817
with:
1918
python-version: ${{ matrix.python-version }}
2019
- name: Install libolm
@@ -47,8 +46,8 @@ jobs:
4746
lint:
4847
runs-on: ubuntu-latest
4948
steps:
50-
- uses: actions/checkout@v3
51-
- uses: actions/setup-python@v3
49+
- uses: actions/checkout@v4
50+
- uses: actions/setup-python@v5
5251
with:
5352
python-version: "3.12"
5453
- uses: isort/isort-action@master

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
## v0.20.4 (unreleased)
22

3+
* Dropped Python 3.9 support.
34
* *(client)* Changed media download methods to log requests and to raise
45
exceptions on non-successful status codes.
56

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"encryption": encryption_dependencies,
3434
},
3535
tests_require=test_dependencies,
36-
python_requires="~=3.9",
36+
python_requires="~=3.10",
3737

3838
classifiers=[
3939
"Development Status :: 4 - Beta",

0 commit comments

Comments
 (0)