Skip to content

Commit b4441cd

Browse files
authored
update deps (#29)
1 parent 0426233 commit b4441cd

File tree

5 files changed

+71
-82
lines changed

5 files changed

+71
-82
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ jobs:
1212
- name: Setup Python ${{ matrix.python-version }}
1313
uses: actions/setup-python@v3
1414
with:
15-
python-version: "3.12"
15+
python-version: "3.13"
1616

1717
- name: Git Checkout
1818
uses: actions/checkout@v4
1919

2020
- name: Install GTK deps
2121
run: |
2222
sudo apt update
23-
sudo apt install libgirepository-2.0-dev libcairo2-dev gir1.2-gtk-4.0 -y
23+
sudo apt install libgirepository-1.0-dev libcairo2-dev gir1.2-gtk-4.0 -y
2424
2525
- name: Install uv
2626
uses: astral-sh/setup-uv@v4

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-24.04
1212
strategy:
1313
matrix:
14-
python-version: ["3.12"]
14+
python-version: ["3.13"]
1515
steps:
1616
- name: Git Checkout
1717
uses: actions/checkout@v4
@@ -23,7 +23,7 @@ jobs:
2323

2424
- name: Install GTK deps
2525
run: |
26-
sudo apt install libgirepository-2.0-dev libcairo2-dev -y
26+
sudo apt install libgirepository-1.0-dev libcairo2-dev -y
2727
2828
- name: Install uv
2929
uses: astral-sh/setup-uv@v4

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.12
1+
3.13

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ description = "on-screen keyboard to help typing faster internationally"
55
authors = ["F. Talha Altinel <[email protected]>"]
66
license = "MIT"
77
readme = "README.md"
8-
requires-python = ">=3.12"
8+
requires-python = ">=3.13"
99
dependencies = [
1010
"pygobject>=3.50.0",
1111
]
1212

1313
[dependency-groups]
1414
dev = [
15-
"coverage>=7.6.9",
15+
"coverage>=7.6.12",
1616
"pygobject-stubs>=2.12.0",
17-
"pyinstaller>=6.11.1",
17+
"pyinstaller>=6.12.0",
1818
"pytest>=8.3.4",
19-
"ruff>=0.8.4",
19+
"ruff>=0.9.6",
2020
]
2121

2222
[tool.ruff]

0 commit comments

Comments
 (0)