Skip to content

Commit 5449067

Browse files
authored
Bumping package versions (#49)
* bumping package versions * bump version to 0.2.6
1 parent ca20628 commit 5449067

File tree

3 files changed

+153
-186
lines changed

3 files changed

+153
-186
lines changed

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "edit-python-pe"
3-
version = "0.2.5"
3+
version = "0.2.6"
44
description = "Allows member and project profile editing onto python.pe git repository"
55
readme = "README.md"
66
authors = [
@@ -16,11 +16,11 @@ classifiers = [
1616
]
1717
module = "edit_python_pe"
1818
dependencies = [
19-
"pygit2==1.17.0",
20-
"textual==3.1.0",
21-
"pygithub==2.6.1",
19+
"pygit2==1.18.2",
20+
"textual==6.1.0",
21+
"pygithub==2.8.1",
2222
"pyyaml==6.0.2",
23-
"platformdirs==4.3.7",
23+
"platformdirs==4.4.0",
2424
"babel==2.17.0",
2525
]
2626

src/edit_python_pe/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def clear_form(self) -> None:
233233
def on_list_view_selected(self, event: ListView.Selected) -> None:
234234
"""User clicked on a file in the list. Parse it into the form fields."""
235235
item_text_widget = event.item.children[0]
236-
filename = item_text_widget.renderable
236+
filename = item_text_widget.content
237237
self.current_file = filename
238238

239239
self.clear_form()

0 commit comments

Comments
 (0)